* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: #03170e;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    padding-top: 115px;
}

/* Ambient Glow Effects */
.glow-left {
    position: absolute;
    top: 300px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(55, 222, 146, 0.25) 0%, rgba(3, 23, 14, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
}

.glow-right {
    position: absolute;
    top: 250px;
    right: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(55, 222, 146, 0.2) 0%, rgba(3, 23, 14, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
}

/* Grid overlay background */
.grid-background {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 700px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
    pointer-events: none;
}

/* Header / Navbar */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(3, 23, 14, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: #fff;
}

.logo-img {
    height: 67px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: #a3b8ad;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
}

.login-btn {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.btn-primary {
    background: #37de92;
    color: #03170e;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #42ee9e;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    text-align: center;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    color: #d1d5db;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: #f3f4f6;
}

.hero p {
    color: #9ca3af;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 36px;
    font-weight: 400;
}

.inline-link {
    color: #37de92;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(55, 222, 146, 0.4);
    transition: border-color 0.2s ease;
}

.inline-link:hover {
    border-bottom-color: #37de92;
}

.hero .flow-tagline {
    color: #37de92;
    font-weight: 700;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 20px;
}

/* Call to Action Group */
.cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Telegram Button */
.btn-telegram {
    background: #24A1DE;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(36, 161, 222, 0.3);
}

.btn-telegram:hover {
    background: #1d8ec6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(36, 161, 222, 0.4);
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1ebc57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Dark / Apple Button */
.btn-dark {
    background: #111827;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-dark:hover {
    background: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.cta-group .btn-primary,
.cta-final .btn-primary {
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(55, 222, 146, 0.3);
}

/* Circle App Download Buttons Container */
.app-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 4px;
}

.btn-circle-app {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-circle-app:hover {
    background: #37de92;
    color: #03170e;
    border-color: #37de92;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(55, 222, 146, 0.3);
}

/* Mockup Container */
.mockup-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 60px;
}

/* Mockup Image */
.mockup-image {
    width: 667px;
    margin: 0 auto;
    display: block;
    position: relative;
}

/* Content Sections (PDF copy) */
.content-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 5;
}

.content-section + .content-section {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #f3f4f6;
    text-align: center;
    margin-bottom: 16px;
}

.subsection-title {
    font-size: 20px;
    font-weight: 700;
    color: #f3f4f6;
    margin: 40px 0 24px;
}

.section-lead {
    color: #9ca3af;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 auto 16px;
    text-align: center;
}

.section-lead strong {
    color: #e5e7eb;
}

/* Feature Grid (Selamat Datang) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.feature-grid.feature-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.feature-grid.feature-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(55, 222, 146, 0.15);
    color: #37de92;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #f3f4f6;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
}

.cta-final {
    text-align: center;
    margin-top: 32px;
}

.cta-final p {
    color: #9ca3af;
    margin-bottom: 8px;
}

/* Documentation-style Article Body (Download page) */
.article-body {
    margin: 0 auto 32px;
    text-align: left;
    color: #9ca3af;
    font-size: 15px;
    line-height: 1.75;
}

.article-body p {
    margin-bottom: 14px;
}

.article-body p:last-child {
    margin-bottom: 0;
}

.article-body strong {
    color: #e5e7eb;
}

.article-body ul {
    margin: 0 0 16px 20px;
}

.article-body li {
    margin-bottom: 8px;
}

/* Spec Table (key/value definition list) */
.spec-table {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 10px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px 28px;
    margin: 24px auto;
    font-size: 14px;
}

.spec-table dt {
    color: #9ca3af;
    font-weight: 600;
}

.spec-table dd {
    color: #f3f4f6;
    font-weight: 600;
}

.spec-table.spec-table-wide {
    max-width: 640px;
}

/* Numbered Steps */
.steps-list {
    margin: 24px auto;
}

.step-item {
    position: relative;
    padding-left: 56px;
    margin-bottom: 24px;
    text-align: left;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(55, 222, 146, 0.15);
    color: #37de92;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item h4 {
    color: #f3f4f6;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-item p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 8px;
}

.step-item p:last-child {
    margin-bottom: 0;
}

/* Flow Chain (sequential arrow diagram) */
.flow-chain {
    max-width: 400px;
    margin: 24px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.flow-step {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 28px;
    color: #f3f4f6;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
}

.flow-arrow {
    color: #37de92;
    font-size: 15px;
}

/* Data Table (device comparison) */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px auto;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
}

.data-table th,
.data-table td {
    padding: 12px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #d1d5db;
}

.data-table th {
    color: #f3f4f6;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.04);
}

.data-table tr:last-child td {
    border-bottom: none;
}

/* FAQ */
.faq-list {
    margin: 24px auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    text-align: left;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    color: #f3f4f6;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.faq-item p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 8px;
}

.faq-item p:last-child {
    margin-bottom: 0;
}

.flow-tagline {
    text-align: center;
    color: #37de92;
    font-weight: 700;
    font-size: 15px;
    margin: 0 0 16px;
}

/* Callout (pull-quote for brand statements) */
.callout {
    max-width: 700px;
    margin: 32px auto;
    padding: 28px 32px;
    text-align: center;
    background: rgba(55, 222, 146, 0.06);
    border: 1px solid rgba(55, 222, 146, 0.25);
    border-radius: 16px;
    color: #f3f4f6;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.5;
}

/* Download Centre Cards */
.download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 40px 0;
}

.download-card {
    background: #ffffff;
    color: #111827;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.download-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-card p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 14px;
}

.tag-row {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 16px;
}

.link-cta {
    color: #37de92;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.link-cta:hover {
    gap: 10px;
}

.download-card .link-cta {
    color: #059669;
}

/* Info / Club Check Box */
.info-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid #37de92;
    border-radius: 12px;
    padding: 28px 32px;
    margin-top: 32px;
}

.info-box h3 {
    color: #f3f4f6;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
}

.info-box-centered {
    text-align: center;
}

.info-box-centered h3 {
    justify-content: center;
}

.info-box p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.info-box strong {
    color: #e5e7eb;
}

.highlight-tag {
    display: inline-block;
    background: rgba(255, 184, 0, 0.12);
    color: #ffb800;
    font-weight: 700;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Games Grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.game-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: rgba(55, 222, 146, 0.4);
}

.game-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.game-card .game-info {
    padding: 16px;
}

.game-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #f3f4f6;
    margin-bottom: 6px;
}

.game-card p {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.5;
}

.club-note {
    margin-top: 32px;
    background: rgba(255, 184, 0, 0.06);
    border: 1px solid rgba(255, 184, 0, 0.25);
    border-radius: 12px;
    padding: 18px 22px;
    font-size: 13px;
    color: #d1d5db;
    line-height: 1.7;
}

.club-note strong {
    color: #ffb800;
}

.club-note ul {
    margin: 0 0 0 20px;
}

.club-note li {
    margin-bottom: 8px;
}

.club-note li:last-child {
    margin-bottom: 0;
}

/* Club Pick Cards (Games page) */
.pick-list {
    margin: 40px auto 0;
}

.pick-card {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 24px;
}

.pick-card:last-child {
    margin-bottom: 0;
}

.pick-card img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
}

.pick-body {
    text-align: left;
}

.pick-label {
    color: #37de92;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.pick-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #f3f4f6;
    margin-bottom: 12px;
}

.pick-card p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.pick-why {
    color: #e5e7eb;
    font-weight: 700;
    font-size: 14px;
    margin-top: 4px;
}

/* Ranked Game List */
.rank-list {
    margin: 24px auto;
}

.rank-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.rank-item:last-child {
    border-bottom: none;
}

.rank-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(55, 222, 146, 0.15);
    color: #37de92;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rank-item h4 {
    color: #f3f4f6;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.rank-item p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Compact Numbered Grid List */
.numbered-list-grid {
    max-width: 620px;
    margin: 24px auto;
    padding-left: 20px;
    column-count: 2;
    column-gap: 40px;
    color: #d1d5db;
    font-size: 14px;
    line-height: 2;
}

/* Keyword Pills */
.keyword-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 24px 0 40px;
}

.keyword-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px 60px;
    color: #6b7280;
    font-size: 13px;
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Responsive Scaling */
@media (max-width: 1024px) {
    .hero h1 { font-size: 44px; }
    .game-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile Nav */
@media (max-width: 900px) {
    body {
        padding-top: 72px;
    }

    header {
        padding: 16px;
    }

    .logo {
        font-size: 17px;
        gap: 8px;
    }

    .logo-img {
        height: 40px;
    }

    .nav-actions {
        gap: 10px;
    }

    .nav-actions .btn-primary {
        padding: 8px 14px;
        font-size: 13px;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        flex-shrink: 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: #03170e;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 8px 24px 12px;
        z-index: 15;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }
}

@media (max-width: 800px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-grid.feature-grid-3 { grid-template-columns: 1fr; }
    .download-grid { grid-template-columns: 1fr; }
    .pick-card { flex-direction: column; }
    .pick-card img { width: 100%; height: 200px; }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 34px; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-grid.feature-grid-2 { grid-template-columns: 1fr; }
    .game-grid { grid-template-columns: repeat(2, 1fr); }
    .mockup-image { width: 100%; }
    .spec-table { grid-template-columns: 1fr; max-width: 100%; }
    .spec-table dd { margin-bottom: 8px; }
    .data-table { font-size: 13px; }
    .data-table th, .data-table td { padding: 10px 12px; }
    .numbered-list-grid { column-count: 1; }
    .rank-item { gap: 14px; }
}