/* Common Stylesheet */
:root {
    --primary-color: #FF6B00;
    --secondary-color: #FF8C42;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --accent-color: #00D9FF;
    --success-color: #28a745;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* CSS Variables for consistent theming */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #16213e 100%);
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: var(--transition);
}

nav a:hover {
    background-color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--text-light);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
    text-transform: uppercase;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.6);
}

.btn-secondary {
    background-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.4);
}

.btn-secondary:hover {
    background-color: #00b8d4;
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.6);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
section {
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* App Details Table */
.app-details {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 60px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.detail-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.detail-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.detail-content h3 {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.detail-content p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Introduction Section */
.intro-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    line-height: 1.8;
}

.intro-section p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    text-align: justify;
}

/* Screenshots Section */
.screenshots {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.screenshot-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.screenshot-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.screenshot-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Lightbox for screenshots */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

/* Features Section */
.features {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Installation Steps */
.installation {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--text-light);
}

.installation .section-title,
.installation .section-title::after {
    color: var(--text-light);
}

.steps-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.step-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
    transition: var(--transition);
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.step-number {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 15px;
}

.step-item h3 {
    display: inline-block;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-item p {
    margin-left: 50px;
    opacity: 0.95;
    line-height: 1.7;
}

/* Tips Section */
.tips {
    background: white;
}

.tips-list {
    max-width: 800px;
    margin: 40px auto 0;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.tips-list ul {
    list-style: none;
}

.tips-list li {
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: start;
    gap: 15px;
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* FAQ Section */
.faq {
    background: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    background: white;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 20px 20px 20px;
    color: #6c757d;
    line-height: 1.7;
}

/* Contact Form */
.contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--text-light);
}

.contact-section .section-title {
    color: var(--text-light);
}

.contact-container {
    max-width: 700px;
    margin: 40px auto 0;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    text-align: center;
}

/* Download Page Specific */
.download-hero {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.download-box {
    background: white;
    max-width: 600px;
    margin: -50px auto 60px;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    text-align: center;
}

.download-box h2 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.download-info {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.download-info p {
    margin: 10px 0;
    color: var(--text-dark);
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.legal-content h1 {
    color: var(--text-dark);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.legal-content h2 {
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p,
.legal-content ul {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #495057;
}

.legal-content ul {
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #16213e 100%);
    color: var(--text-light);
    padding: 40px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-bg);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav a {
        display: block;
        padding: 0.75rem 1rem;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
    }

    section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .features-grid,
    .details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .screenshot-item img {
        height: 300px;
    }

    .app-details,
    .intro-section {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .steps-container {
        padding: 0;
    }

    .step-item {
        padding: 20px;
        margin-bottom: 15px;
    }

    .step-item h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .step-item p {
        margin-left: 0;
        font-size: 0.95rem;
    }

    .tips-list {
        padding: 30px 20px;
    }

    .faq-container {
        padding: 0;
    }

    .faq-question {
        padding: 15px;
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 15px 15px 15px;
        font-size: 0.95rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .legal-content h1 {
        font-size: 1.8rem;
    }

    .legal-content h2 {
        font-size: 1.4rem;
    }

    .contact-container {
        padding: 30px 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .download-box {
        padding: 30px 20px;
        margin: -50px 20px 40px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .header-container {
        padding: 0 15px;
    }

    .logo-container img {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero {
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    section {
        padding: 35px 15px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .app-details {
        padding: 25px 15px;
    }

    .details-grid {
        gap: 15px;
    }

    .detail-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }

    .detail-icon {
        font-size: 1.8rem;
    }

    .detail-content h3 {
        font-size: 0.85rem;
    }

    .detail-content p {
        font-size: 1rem;
    }

    .intro-section {
        padding: 25px 15px;
    }

    .intro-section p {
        font-size: 0.95rem;
        text-align: left;
    }

    .screenshots-grid {
        gap: 10px;
    }

    .screenshot-item img {
        height: 250px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    .step-item {
        padding: 15px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 1rem;
        margin-right: 10px;
    }

    .step-item h3 {
        font-size: 1rem;
    }

    .tips-list {
        padding: 25px 15px;
    }

    .tips-list li {
        font-size: 0.95rem;
        padding: 12px 0;
    }

    .faq-question {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .faq-toggle {
        font-size: 1.3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section ul {
        text-align: center;
    }

    .footer-bottom {
        font-size: 0.9rem;
        padding: 15px 10px;
    }

    .legal-content {
        padding: 25px 15px;
    }

    .legal-content h1 {
        font-size: 1.6rem;
    }

    .legal-content h2 {
        font-size: 1.2rem;
        margin-top: 25px;
    }

    .legal-content p,
    .legal-content ul {
        font-size: 0.95rem;
    }

    .contact-container {
        padding: 25px 15px;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }

    .download-box {
        padding: 25px 15px;
        margin: -40px 15px 30px;
    }

    .download-box h2 {
        font-size: 1.4rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

/* ============================================
   unduh.html â€” Landing Page Styles
   ============================================ */

/* Warning Banner */
.warning-banner {
    background: linear-gradient(135deg, #d32f2f 0%, #e65100 100%);
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.warning-banner h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.warning-banner p {
    font-size: 1.05rem;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.95;
}

/* OK JKT Recommendation Hero */
.recommendation-hero {
    background: linear-gradient(135deg, #0d47a1 0%, #1b5e20 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.recommendation-logo {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    margin: 0 auto 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.recommendation-hero h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Selling Points Grid */
.selling-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.selling-point {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    padding: 24px 16px;
    border-radius: 12px;
    transition: var(--transition);
}

.selling-point:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}

.selling-point-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.selling-point h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.selling-point p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* OK JKT CTA Button */
.btn-okjkt {
    background-color: #2e7d32;
    box-shadow: 0 5px 20px rgba(46,125,50,0.5);
    padding: 18px 50px;
    font-size: 1.2rem;
}

.btn-okjkt:hover {
    background-color: #388e3c;
    box-shadow: 0 8px 30px rgba(46,125,50,0.7);
    transform: translateY(-3px);
}

/* Reviews Section */
.reviews-section {
    padding: 60px 20px;
    background: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.review-card {
    background: var(--light-bg);
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-top: 4px solid transparent;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.review-negative {
    border-top-color: #e53935;
}

.review-positive {
    border-top-color: #2e7d32;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.review-stars {
    font-size: 0.85rem;
}

.review-label {
    font-size: 0.8rem;
    color: #6c757d;
    margin-left: 4px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    font-style: italic;
}

/* Comparison Section */
.comparison-section {
    padding: 60px 20px;
    background: var(--light-bg);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table thead th {
    padding: 16px 20px;
    font-size: 1.05rem;
    text-align: center;
}

.comparison-table thead th:first-child {
    text-align: left;
    background: var(--dark-bg);
    color: #fff;
}

.comparison-table .col-dana {
    background: #fce4ec;
    color: #b71c1c;
    text-align: center;
}

.comparison-table thead .col-dana {
    background: #c62828;
    color: #fff;
}

.comparison-table .col-okjkt {
    background: #e8f5e9;
    color: #1b5e20;
    text-align: center;
    font-weight: 600;
}

.comparison-table thead .col-okjkt {
    background: #2e7d32;
    color: #fff;
}

.comparison-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    font-size: 0.98rem;
}

.comparison-table tbody td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Dana Game Countdown Download Section */
.countdown-section {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.countdown-section h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.countdown-btn-wrapper {
    max-width: 400px;
    margin: 0 auto 16px;
}

/* Countdown Button */
.btn-countdown {
    display: inline-block;
    width: 100%;
    padding: 16px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-countdown.disabled {
    background: #bdbdbd;
    color: #fff;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-countdown.active {
    background: var(--primary-color);
    color: var(--text-light);
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.45);
    animation: btn-pulse 1.5s ease-in-out 2;
}

.btn-countdown.active:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(255, 107, 0, 0.6);
}

@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(255, 107, 0, 0.45); }
    50% { box-shadow: 0 5px 30px rgba(255, 107, 0, 0.8); }
}

/* Progress Bar */
.countdown-progress {
    width: 100%;
    height: 5px;
    background: #e0e0e0;
    border-radius: 3px;
    margin-top: 12px;
    overflow: hidden;
}

.countdown-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    transition: width 1s linear;
}

/* Hint Text */
.countdown-hint {
    font-size: 0.9rem;
    color: #757575;
    margin-top: 16px;
    transition: opacity 0.3s ease;
}

/* Disclaimer (reused) */
.dana-disclaimer {
    font-size: 0.82rem;
    color: #757575;
    margin-top: 14px;
    font-style: italic;
}

/* ============================================
   unduh.html â€” Responsive Overrides
   ============================================ */

@media (max-width: 768px) {
    .warning-banner {
        padding: 24px 15px;
    }

    .warning-banner h2 {
        font-size: 1.3rem;
    }

    .recommendation-hero {
        padding: 40px 15px;
    }

    .recommendation-hero h2 {
        font-size: 1.6rem;
    }

    .selling-points-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .selling-point {
        padding: 18px 12px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .warning-banner h2 {
        font-size: 1.15rem;
    }

    .warning-banner p {
        font-size: 0.95rem;
    }

    .recommendation-hero h2 {
        font-size: 1.35rem;
        margin-bottom: 28px;
    }

    .recommendation-logo {
        width: 80px;
        height: 80px;
    }

    .selling-points-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .btn-okjkt {
        padding: 15px 30px;
        font-size: 1.05rem;
        width: 100%;
    }

    .review-card {
        padding: 20px 16px;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 10px 8px;
        font-size: 0.82rem;
    }

    .countdown-section {
        padding: 30px 15px;
    }

    .countdown-section h2 {
        font-size: 1.25rem;
    }

    .btn-countdown {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}