/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables for Premium Dark Gaming Theme */
:root {
    --primary: #f43f5e;
    --primary-hover: #e11d48;
    --primary-light: rgba(244, 63, 94, 0.15);
    --primary-glow: rgba(244, 63, 94, 0.35);

    --gradient-red: linear-gradient(135deg, #f43f5e 0%, #fbbf24 100%);
    --gradient-red-hover: linear-gradient(135deg, #e11d48 0%, #d97706 100%);

    --accent: #fbbf24;
    --accent-hover: #f59e0b;
    --accent-light: rgba(251, 191, 36, 0.15);
    --accent-glow: rgba(251, 191, 36, 0.3);

    --success: #10b981;
    --success-light: rgba(16, 185, 129, 0.15);

    --danger: #ef4444;
    --danger-light: rgba(239, 68, 68, 0.15);

    --warning: #f59e0b;
    --warning-light: rgba(245, 158, 11, 0.15);

    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --text-light: #64748b;

    --bg-main: #090d16;
    --bg-card: rgba(17, 24, 39, 0.65);
    --bg-navbar: rgba(9, 13, 22, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-focus: rgba(244, 63, 94, 0.4);

    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.7);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 25px rgba(244, 63, 94, 0.25);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--bg-navbar);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-link img {
    height: 48px;
    width: auto;
    transition: var(--transition-normal);
}

.logo-link:hover img {
    transform: scale(1.05);
}

@keyframes badgeShine {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.logo-badge {
    background: linear-gradient(120deg, var(--accent) 0%, var(--accent) 40%, #ffebb3 50%, var(--accent) 60%, var(--accent) 100%);
    background-size: 200% auto;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(217, 119, 6, 0.2);
    animation: badgeShine 4s linear infinite;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-block;
}

.logo-badge:hover {
    transform: scale(1.1) translateY(-1px) rotate(-2deg);
    box-shadow: 0 4px 8px rgba(217, 119, 6, 0.35);
    background: linear-gradient(120deg, var(--primary) 0%, var(--primary) 40%, #fff 50%, var(--primary) 60%, var(--primary) 100%);
    background-size: 200% auto;
    animation: badgeShine 1.5s linear infinite;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.nav-item a {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

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

.nav-item.active a {
    color: white !important;
    background: var(--gradient-red);
    box-shadow: 0 2px 8px rgba(225, 29, 72, 0.25);
}

.cta-button {
    background: var(--gradient-red);
    color: white !important;
    font-weight: 700 !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: var(--radius-md) !important;
    box-shadow: 0 4px 6px rgba(225, 29, 72, 0.3);
    border: none;
}

.cta-button:hover {
    background: var(--gradient-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(225, 29, 72, 0.45);
}

/* Mobile Nav Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
}

/* Side Drawer for Mobile */
.side-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-card);
    z-index: 200;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-normal);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.side-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
}

.drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.drawer-links a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    display: block;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
}

.drawer-links a:hover {
    color: var(--primary);
    background-color: var(--primary-light);
}

.drawer-links a.active {
    color: white !important;
    background: var(--gradient-red);
    box-shadow: 0 2px 8px rgba(225, 29, 72, 0.25);
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 150;
    display: none;
}

.backdrop.show {
    display: block;
}

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

.section {
    margin-bottom: 3.5rem;
}

.section:last-of-type {
    margin-bottom: 0;
}


/* Hero Section */
.hero {
    background: radial-gradient(circle at 10% 20%, rgba(254, 228, 230, 0.6) 0%, rgba(254, 243, 199, 0.3) 90%);
    padding: 4.5rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: white;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.hero-badge span {
    color: var(--accent);
    margin-left: 0.25rem;
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: var(--text-main);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    cursor: pointer;
    font-size: 1rem;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--gradient-red);
    color: white;
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.3);
    border: none;
}

.btn-primary:hover {
    background: var(--gradient-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.45);
    color: white;
}

.btn-secondary {
    background-color: white;
    color: var(--text-main);
    border-color: var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--bg-main);
    border-color: var(--border-focus);
    transform: translateY(-2px);
}

/* Card components */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.75rem;
}

.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.card-accent {
    border-top: 4px solid var(--accent);
}

.card-primary {
    border-top: 4px solid var(--primary);
}

.card-success {
    border-top: 4px solid var(--success);
}

/* All simple cards (with header and paragraph text, with or without icon) inside grids across all pages */
.grid .card:has(h3):has(p):not(:has(ul)) {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem 0.75rem;
    flex-wrap: wrap;
    padding: 1rem 1.25rem;
}

.grid .card:has(h3):has(p):not(:has(ul)) .card-icon {
    margin-bottom: 0;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.grid .card:has(h3):has(p):not(:has(ul)) h3 {
    margin-bottom: 0;
    font-size: 1.05rem;
    font-weight: 700;
}

.grid .card:has(h3):has(p):not(:has(ul)) h3::after {
    content: ":";
    margin-left: 1px;
}

.grid .card:has(h3):has(p):not(:has(ul)) p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.card-list {
    margin-top: 1rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.card-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.card-list li::before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    font-size: 1rem;
}

/* Callout / Alert Box */
.callout {
    background-color: var(--bg-card);
    border-left: 4px solid var(--primary);
    border-radius: 4px var(--radius-md) var(--radius-md) 4px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-sm);
}

.callout-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.callout-info {
    border-left-color: var(--primary);
    background-color: var(--primary-light);
    background: linear-gradient(to right, var(--primary-light), #ffffff);
}

.callout-info .callout-title {
    color: var(--primary);
}

.callout-warning {
    border-left-color: var(--warning);
    background: linear-gradient(to right, #fefdf0, #ffffff);
}

.callout-warning .callout-title {
    color: var(--warning);
}

.callout-accent {
    border-left-color: var(--accent);
    background: linear-gradient(to right, #fefaf0, #ffffff);
}

.callout-accent .callout-title {
    color: var(--accent);
}

/* Page Section headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 1.75rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0.4rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Timelines / Steps */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 2rem auto 0;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    width: 2px;
    height: 100%;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: -43px;
    top: 2px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px var(--bg-main), 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.timeline-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.timeline-content:hover {
    border-color: var(--border-focus);
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Accordion FAQs */
.accordion {
    max-width: 800px;
    margin: 1.75rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.accordion-item:hover {
    border-color: var(--border-focus);
}

.accordion-header {
    padding: 1.25rem 1.5rem;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background-color var(--transition-fast);
}

.accordion-header:hover {
    background-color: var(--bg-main);
}

.accordion-icon {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform var(--transition-normal);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.accordion-item.active {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* VIP Levels Comparison Table Section */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-top: 2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th,
td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

th {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-weight: 700;
}

tr:last-child td {
    border-bottom: none;
}

tbody tr:hover {
    background-color: rgba(248, 250, 252, 0.5);
}

.badge-vip {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.vip-level-1-3 {
    background-color: #f1f5f9;
    color: #475569;
}

.vip-level-4-6 {
    background-color: #fef3c7;
    color: #d97706;
}

.vip-level-7-8 {
    background-color: var(--primary-light);
    color: var(--primary);
    box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.2);
}

/* Visual Copy Layout */
.copy-block {
    display: flex;
    align-items: center;
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.25rem;
    margin-top: 1.5rem;
    justify-content: space-between;
    gap: 1rem;
}

.copy-text {
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

.btn-copy {
    background: var(--gradient-red);
    color: white;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-copy:hover {
    background: var(--gradient-red-hover);
}

/* Footer styling */
footer {
    background: linear-gradient(180deg, #ffffff 0%, #fff7f8 100%);
    border-top: 1px solid var(--border-color);
    padding: 4.5rem 1.5rem 2rem;
    margin-top: 5rem;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1200px, calc(100% - 3rem));
    height: 3px;
    background: var(--gradient-red);
    transform: translateX(-50%);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(420px, 1.5fr) repeat(2, minmax(190px, 0.75fr));
    gap: 4rem;
    align-items: start;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    align-items: flex-start;
    padding-right: 2rem;
}

.footer-info p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 620px;
}

.footer-col {
    min-width: 0;
}

.footer-col h4 {
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: left;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0;
    margin: 0;
}

.footer-col a {
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    width: 100%;
    min-height: 2.35rem;
    font-size: 0.95rem;
    font-weight: 650;
    border-radius: var(--radius-sm);
}

.footer-col a:hover {
    color: var(--primary);
    padding-left: 0.4rem;
    background: rgba(225, 29, 72, 0.06);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3.5rem auto 0;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    color: #be123c;
    font-size: 0.85rem;
}

.footer-sitemap-link {
    color: #be123c;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-sitemap-link:hover {
    color: var(--primary);
}

.footer-disclaimer {
    max-width: 800px;
    color: var(--text-light) !important;
    font-size: 0.75rem !important;
    line-height: 1.5;
}

/* Responsive breakpoint styling */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-info {
        grid-column: 1 / -1;
        max-width: 680px;
        padding-right: 0;
    }
}

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

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding: 2rem 1rem !important;
    }

    .hero h1 {
        font-size: 2rem !important;
        margin-bottom: 0.75rem !important;
    }

    .hero p {
        margin-bottom: 1.25rem !important;
        font-size: 1.05rem !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container {
        padding: 1.25rem 1rem !important;
    }

    .timeline {
        padding-left: 2rem;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-badge {
        left: -32px;
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }

    .section {
        margin-bottom: 1.25rem !important;
    }

    .section-header {
        margin-bottom: 0.75rem !important;
    }

    .grid {
        margin-top: 0.75rem !important;
        gap: 0.75rem !important;
    }

    .card {
        padding: 1rem !important;
    }

    /* Override inline margin-tops on mobile to reduce spacing */
    .section[style*="margin-top"],
    .section-header[style*="margin-top"] {
        margin-top: 1.75rem !important;
    }

    div[style*="margin-top"],
    ul[style*="margin-top"],
    h3[style*="margin-top"] {
        margin-top: 1.25rem !important;
    }

    .callout[style*="margin-top"] {
        margin-top: 1.0rem !important;
    }

    /* Reduce large inline padding & margins on mobile screens */
    div[style*="padding: 2.5rem"],
    div[style*="padding:2.5rem"],
    div[style*="padding: 3rem"],
    div[style*="padding:3rem"],
    .callout[style*="padding"],
    .callout-accent[style*="padding"] {
        padding: 1.5rem 1.25rem !important;
    }

    div[style*="padding: 2rem"],
    div[style*="padding:2rem"] {
        padding: 1.25rem !important;
    }

    div[style*="margin-bottom: 3rem"],
    div[style*="margin-bottom:3rem"] {
        margin-bottom: 1.5rem !important;
    }

    /* Fix card header and icon alignment on mobile globally */
    .grid .card:has(h3):has(p):not(:has(ul)) {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem 0.75rem;
    }

    .grid .card:has(h3):has(p):not(:has(ul)) .card-icon {
        margin-bottom: 0 !important;
        flex-shrink: 0;
    }

    .grid .card:has(h3):has(p):not(:has(ul)) h3 {
        flex: 1;
        min-width: 0;
        margin-bottom: 0 !important;
    }

    .grid .card:has(h3):has(p):not(:has(ul)) p {
        flex-basis: 100%;
        margin-top: 0.5rem !important;
    }

    .timeline {
        margin-top: 1.5rem;
    }

    .timeline-item {
        margin-bottom: 1.5rem;
    }

    .callout {
        margin: 1rem 0;
        padding: 1rem 1.25rem;
    }

    .accordion {
        margin-top: 1.25rem;
        gap: 0.75rem;
    }

    footer {
        margin-top: 2rem !important;
        padding: 2.5rem 1.5rem 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
    }
}

/* Antigravity - Premium Interactive Homepage CSS additions */

.page-layout-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    padding: 0 1.5rem;
}

.sidebar-nav {
    width: 225px;
    position: sticky;
    top: 100px;
    height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem 0 1.5rem 1.25rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.main-content-wrapper {
    flex: 1;
    min-width: 0;
    padding: 0 0 3rem 0;
}

@media (max-width: 992px) {
    .sidebar-nav {
        display: none;
    }

    .page-layout-container {
        display: block;
        padding: 0 1rem;
    }
}

.sidebar-title {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    margin-right: 1.25rem;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 0.5rem;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
    padding-right: 1.25rem;
    flex-grow: 1;
    scrollbar-width: thin;
    scrollbar-color: #000000 transparent;
}

/* Custom Scrollbar for sidebar navigation links */
.sidebar-links::-webkit-scrollbar {
    width: 4px;
}

.sidebar-links::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-links::-webkit-scrollbar-thumb {
    background-color: #000000;
    border-radius: 4px;
}

.sidebar-link {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.sidebar-icon {
    flex-shrink: 0;
    display: inline-block;
    width: 1.25rem;
    text-align: center;
}

.sidebar-text {
    flex: 1;
    min-width: 0;
}

.sidebar-link:hover {
    color: var(--primary);
    background-color: var(--primary-light);
}

.sidebar-link.active {
    color: white;
    background: var(--gradient-red);
    box-shadow: 0 2px 8px rgba(225, 29, 72, 0.25);
}

.scroll-anchor {
    scroll-margin-top: 110px;
}

.premium-text-block {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    line-height: 1.8;
}

.premium-text-block p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.premium-text-block p:last-child {
    margin-bottom: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.feature-card:nth-child(even) {
    border-top-color: var(--accent);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 600;
    line-height: 1.5;
}

/* ============================================================
   Register Section – Side-by-Side Layout
   ============================================================ */
.register-split-layout {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

/* Left column: phone image */
.register-image-col {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

@media (min-width: 769px) {
    .register-image-col {
        position: sticky;
        top: 100px;
        z-index: 10;
    }
}

.register-phone-frame {
    position: relative;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 36px;
    padding: 14px 10px 18px 10px;
    box-shadow:
        0 0 0 2px #333,
        0 20px 60px rgba(0, 0, 0, 0.35),
        0 8px 25px rgba(225, 29, 72, 0.18);
    width: 100%;
    max-width: 240px;
}

.register-phone-notch {
    width: 80px;
    height: 10px;
    background: #111;
    border-radius: 0 0 12px 12px;
    margin: 0 auto 10px auto;
}

.register-phone-img {
    width: 100%;
    border-radius: 22px;
    display: block;
    object-fit: cover;
}

.register-img-caption {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.register-img-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(225, 29, 72, 0.2);
}

.register-img-caption p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
    max-width: 200px;
}

/* Right column: steps */
.register-steps-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* The guide-box inside register section uses a top accent */
.register-guide-box {
    border-top: 4px solid var(--primary);
}

/* Responsive: stack on tablet/mobile */
@media (max-width: 768px) {
    .register-split-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .register-image-col {
        flex: none;
        width: 100%;
        align-items: center;
    }

    .register-phone-frame {
        max-width: 220px;
    }

    /* For image-right sections: pull the image column to the top on mobile */
    .register-split-layout.img-right .register-image-col {
        order: -1;
    }
    .register-split-layout.img-right .register-steps-col {
        order: 1;
    }
}

/* Interactive Steps Checklist */
.guide-box {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.steps-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.guide-instruction-tap {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.interactive-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.step-item {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.step-item:hover {
    border-color: var(--primary-focus, var(--primary));
    transform: translateX(4px);
    background-color: white;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.step-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    transition: var(--transition-normal);
    flex: 1;
}

/* Completed Step Status */
.step-item.completed {
    border-color: #bbf7d0;
    background-color: #f0fdf4;
}

.step-item.completed .step-num {
    background-color: var(--success);
    color: white;
}

.step-item.completed .step-content {
    color: var(--text-light);
    text-decoration: line-through;
}

.step-item.completed::after {
    content: "✓";
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--success);
    font-weight: 800;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .guide-box {
        padding: 1.5rem;
    }

    .step-item.completed::after {
        display: none;
        /* Hide absolute checkmark on small screens to avoid overlay text */
    }
}

/* Deposit Methods Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.payment-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.payment-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.payment-icon {
    font-size: 2rem;
}

.payment-name {
    font-size: 0.95rem;
    color: var(--text-main);
}

/* Card view deck inside step 4 of Withdrawal */
.card-view-wrapper {
    margin-top: 1.25rem;
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}

.card-view-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.card-view-label::before {
    content: "🎴";
}

.withdrawal-cards-deck {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.withdrawal-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.withdrawal-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.35rem;
}

.withdrawal-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Timeline Cards */
.timeline-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.timeline-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.timeline-card:hover {
    border-left-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.timeline-badge-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
}

.timeline-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.5;
    margin: 0;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.advantage-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.advantage-card:hover {
    border-color: #bbf7d0;
    box-shadow: var(--shadow-md);
}

.adv-check {
    color: var(--success);
    font-weight: 800;
    font-size: 1.1rem;
}

.advantage-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Bonus/VIP Showcase Cards */
.bonuses-cards-container,
.vip-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* When VIP cards are inside the side-by-side right column, force single column */
.vip-cards-stacked {
    grid-template-columns: 1fr !important;
    margin-top: 0;
}

.bonus-showcase-card,
.vip-showcase-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.bonus-showcase-card:hover,
.vip-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.bonus-card-badge,
.vip-card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
}

.vip-card-badge {
    background-color: var(--accent-light);
    color: var(--accent);
}

.bonus-showcase-card h3,
.vip-showcase-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
    padding-right: 4.5rem;
}

.bonus-list-details,
.vip-list-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bonus-list-details li,
.vip-list-details li {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    position: relative;
    padding-left: 1.25rem;
}

.bonus-list-details li::before,
.vip-list-details li::before {
    content: "•";
    color: var(--primary);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.25rem;
}

.vip-list-details li::before {
    color: var(--accent);
}

/* Customer Support styles */
.support-card-box {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.support-card-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.support-card-box p:last-of-type {
    margin-bottom: 0;
}

.support-nav-tip {
    margin-top: 2rem;
    background-color: var(--primary-light);
    border-left: 4px solid var(--primary);
    padding: 1.25rem 1.5rem;
    border-radius: 4px var(--radius-md) var(--radius-md) 4px;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

/* Referral code display and dashboard */
.invite-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.invite-code-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: var(--transition-normal);
}

.invite-code-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.invite-code-title {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.copy-display-box {
    display: flex;
    align-items: center;
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.6rem 1rem;
    justify-content: space-between;
    gap: 1rem;
}

.code-value {
    font-family: monospace;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    word-break: break-all;
}

.link-value {
    font-size: 0.9rem;
}

.how-invite-box {
    background: #f8fafc;
    border: 1px dashed var(--border-focus);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 1.25rem 0 2rem;
}

.how-invite-box p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Call to Action Banner */
.journey-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: white;
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.journey-banner h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin: 0;
}

.journey-banner p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 750px;
    opacity: 0.95;
    margin: 0;
}

.banner-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.btn-primary-white {
    background-color: white;
    color: var(--primary);
    border: none;
}

.btn-primary-white:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-secondary-trans {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-secondary-trans:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
}

.text-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.font-bold {
    font-weight: 700;
}

/* Refined equal gapping spacing system for homepage headings */

/* 1. Hero Title (h1) equal spacing */
body.homepage .hero h1 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

/* 2. Main Section Headers (h2) equal spacing to upper and below sections */
body.homepage .section-header {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
    text-align: center;
}

body.homepage .section-header h2 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

body.homepage .section-header h2+p {
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

/* 3. Sub-section Headings (h3) equal margins */
body.homepage .steps-title,
body.homepage .methods-title,
body.homepage .timeline-title,
body.homepage .advantages-title {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

/* Login Page Specific Styling & Responsive Spacing */
.login-page .section {
    margin-bottom: 4.5rem;
}

.login-page .login-faq-section {
    margin-bottom: 3rem;
}

.login-page footer {
    margin-top: 2rem;
}

@media (max-width: 768px) {

    /* Reduce Hero padding and interior vertical spacing on Login Page */
    body.login-page .hero {
        padding: 2rem 1rem !important;
    }

    body.login-page .hero .hero-badge {
        margin-bottom: 1rem !important;
    }

    body.login-page .hero h1 {
        margin-top: 1rem !important;
        margin-bottom: 0.75rem !important;
        font-size: 1.8rem !important;
    }

    body.login-page .hero p {
        margin-bottom: 1.25rem !important;
    }

    body.login-page .hero-ctas {
        margin-top: 1rem !important;
    }

    /* Reduce main container top padding */
    body.login-page .container {
        padding: 1.5rem 1rem !important;
    }

    /* Reduce vertical section spacing */
    body.login-page .section {
        margin-bottom: 1.75rem !important;
        /* Fixes section gapping on mobile */
    }

    body.login-page .login-faq-section {
        margin-bottom: 1.25rem !important;
        /* Spacing for mobile faq section */
    }

    body.login-page .section-header {
        margin-top: 1rem !important;
        margin-bottom: 1.25rem !important;
        /* Fixes header spacing on mobile */
    }

    body.login-page .section-header h2+p {
        margin-top: 0.75rem !important;
    }

    body.login-page h3 {
        margin-bottom: 1rem !important;
    }

    /* Content for mobile screen aligned from both sides (justified) */
    body.login-page .section-header p,
    body.login-page .card p,
    body.login-page .callout p,
    body.login-page .timeline-content p {
        text-align: justify;
        text-justify: inter-word;
        font-size: 0.95rem;
    }

    /* Hero intro paragraphs left-aligned on mobile */
    body.login-page .hero p {
        text-align: left !important;
    }

    /* Reduce card and list margins and paddings */
    body.login-page .card {
        padding: 1.25rem !important;
        margin-bottom: 1.25rem !important;
    }

    body.login-page .mobile-inline-title-card,
    body.login-page .card:has(> .mobile-inline-title-heading) {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        column-gap: 0.75rem;
    }

    body.login-page .mobile-inline-title-card .card-icon,
    body.login-page .card:has(> .mobile-inline-title-heading) .card-icon {
        grid-column: 1;
        grid-row: 1;
        width: 42px;
        height: 42px;
        margin-bottom: 0 !important;
        font-size: 1.35rem;
    }

    body.login-page .mobile-inline-title-card h3,
    body.login-page .mobile-inline-title-heading {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 0 !important;
        font-size: 1rem;
        line-height: 1.3;
    }

    body.login-page .mobile-inline-title-card .card-list,
    body.login-page .card:has(> .mobile-inline-title-heading) .card-list {
        grid-column: 1 / -1;
    }

    body.login-page .card-list {
        margin-top: 0.75rem !important;
        gap: 0.5rem !important;
    }

    body.login-page .timeline {
        margin-top: 1rem !important;
    }

    body.login-page .timeline-item {
        margin-bottom: 1.25rem !important;
    }

    body.login-page .timeline-content {
        padding: 1.25rem !important;
    }

    /* Reduce callout and notice boxes spacing */
    body.login-page .callout {
        margin: 1rem 0 !important;
        padding: 1rem 1.25rem !important;
    }

    body.login-page .section>div[style*="display: flex"] {
        gap: 1rem !important;
    }

    /* Reduce gap below FAQ and footer on mobile */
    body.login-page footer {
        margin-top: 1rem !important;
    }
}

/* Homepage Mobile Spacing Adjustments */
@media (max-width: 768px) {

    /* Reduce Hero padding and interior vertical spacing */
    body.homepage .hero {
        padding: 2rem 1rem !important;
    }

    body.homepage .hero .hero-badge {
        margin-bottom: 1rem !important;
    }

    body.homepage .hero h1 {
        margin-top: 1rem !important;
        margin-bottom: 0.75rem !important;
        font-size: 1.8rem !important;
        /* Make sure size is comfortable for mobile */
    }

    body.homepage .hero p {
        margin-bottom: 1.5rem !important;
    }

    /* Reduce vertical spacing between main sections */
    body.homepage .section {
        margin-bottom: 1.75rem !important;
    }

    /* Reduce vertical spacing of Section Headers */
    body.homepage .section-header {
        margin-top: 1.75rem !important;
        margin-bottom: 1.25rem !important;
    }

    body.homepage .section-header h2+p {
        margin-top: 0.75rem !important;
    }

    /* Reduce margin for sub-section headings (h3) */
    body.homepage .steps-title,
    body.homepage .methods-title,
    body.homepage .timeline-title,
    body.homepage .advantages-title {
        margin-top: 1rem !important;
        margin-bottom: 0.75rem !important;
    }

    /* Reduce main content bottom padding */
    body.homepage .main-content-wrapper {
        padding: 0 0 1.5rem 0 !important;
    }

    /* Override large inline margin-top on mobile */
    body.homepage .callout,
    body.homepage .timeline-section,
    body.homepage .advantages-section,
    body.homepage .comparison-note,
    body.homepage .vip-levels-note,
    body.homepage .guide-box,
    body.homepage .invite-summary-box,
    body.homepage .how-invite-box {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    /* Reduce internal padding of cards and block containers on mobile */
    body.homepage .premium-text-block,
    body.homepage .support-card-box {
        padding: 1.25rem !important;
    }

    body.homepage .guide-box {
        padding: 1.25rem !important;
    }

    body.homepage .comparison-note,
    body.homepage .vip-levels-note,
    body.homepage .invite-summary-box {
        padding: 1.25rem !important;
    }

    body.homepage .how-invite-box {
        padding: 1rem !important;
    }

    body.homepage .feature-card,
    body.homepage .timeline-card,
    body.homepage .bonus-showcase-card,
    body.homepage .vip-showcase-card,
    body.homepage .invite-code-card {
        padding: 1.25rem !important;
    }

    /* Reduce spacing for list/grid margins and gaps */
    body.homepage .features-grid,
    body.homepage .bonuses-cards-container,
    body.homepage .vip-cards-container,
    body.homepage .invite-dashboard,
    body.homepage .timeline-cards-grid,
    body.homepage .advantages-grid {
        margin-top: 1rem !important;
        gap: 0.75rem !important;
    }

    /* Reduce CTA banner padding and top margin */
    body.homepage .journey-banner {
        padding: 2rem 1.25rem !important;
        margin-top: 1.5rem !important;
        gap: 1rem !important;
    }

    body.homepage .journey-banner h2 {
        font-size: 1.6rem !important;
    }

    body.homepage .journey-banner p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
}

/* About Page Mobile Spacing Adjustments */
@media (max-width: 768px) {

    /* Reduce Hero padding and interior vertical spacing */
    body.about-page .hero {
        padding: 2rem 1rem !important;
    }

    body.about-page .hero h1 {
        margin-top: 1rem !important;
        margin-bottom: 0.75rem !important;
        font-size: 1.8rem !important;
    }

    /* Reduce vertical spacing between main sections */
    body.about-page .section {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* Reduce vertical spacing of Section Headers */
    body.about-page .section-header {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    body.about-page .section-header h2+p {
        margin-top: 0.5rem !important;
    }

    /* Reduce main container top padding */
    body.about-page .container {
        padding: 1.5rem 1rem !important;
    }

    /* Reduce internal padding of cards and block containers on mobile */
    body.about-page .card {
        padding: 1.25rem !important;
    }

    /* Reduce timeline item spacing */
    body.about-page .timeline {
        margin-top: 1rem !important;
    }

    body.about-page .timeline-item {
        margin-bottom: 1rem !important;
    }

    body.about-page .timeline-content {
        padding: 1rem !important;
    }

    /* Spacing inside grids */
    body.about-page .grid {
        margin-top: 1rem !important;
        gap: 0.75rem !important;
    }

    /* Spacing inside cards and timeline inline styles override */
    body.about-page div[style*="margin: 2rem auto 0"],
    body.about-page div[style*="margin-top: 2rem"] {
        margin-top: 1rem !important;
    }

    body.about-page div[style*="padding: 2.5rem"],
    body.about-page div[style*="padding: 2rem"] {
        padding: 1.25rem !important;
    }

    /* Reduce contact section cta padding */
    body.about-page .callout-accent {
        padding: 1.5rem 1.25rem !important;
    }

    body.about-page .callout-accent h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }

    body.about-page .callout-accent p {
        font-size: 0.95rem !important;
        margin-bottom: 1rem !important;
    }

    /* Content text alignment for mobile */
    body.about-page .section-header p,
    body.about-page .card p,
    body.about-page .callout p,
    body.about-page .timeline-content p {
        text-align: justify;
        text-justify: inter-word;
        font-size: 0.95rem;
    }
}

/* Download Page Mobile Spacing Adjustments */
@media (max-width: 768px) {

    /* Reduce Hero padding and interior vertical spacing */
    body.download-page .hero {
        padding: 2rem 1rem !important;
    }

    body.download-page .hero h1 {
        margin-top: 1rem !important;
        margin-bottom: 0.75rem !important;
        font-size: 1.8rem !important;
    }

    body.download-page .hero p {
        margin-bottom: 1.25rem !important;
    }

    /* Reduce vertical spacing between main sections */
    body.download-page .section {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* Reduce vertical spacing of Section Headers */
    body.download-page .section-header {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    body.download-page .section-header h2+p {
        margin-top: 0.5rem !important;
    }

    /* Reduce main container top padding */
    body.download-page .container {
        padding: 1.5rem 1rem !important;
    }

    /* Reduce internal padding of cards and block containers on mobile */
    body.download-page .card {
        padding: 1.25rem !important;
    }

    /* Reduce timeline item spacing */
    body.download-page .timeline {
        margin-top: 1rem !important;
    }

    body.download-page .timeline-item {
        margin-bottom: 1rem !important;
    }

    body.download-page .timeline-content {
        padding: 1rem !important;
    }

    /* Spacing inside grids */
    body.download-page .grid {
        margin-top: 1rem !important;
        gap: 0.75rem !important;
    }

    /* Spacing inside cards and timeline inline styles override */
    body.download-page div[style*="margin-top: 2rem"] {
        margin-top: 1rem !important;
    }

    body.download-page div[style*="padding: 2rem"] {
        padding: 1.25rem !important;
    }

    /* Reduce callout and notice boxes spacing */
    body.download-page .callout {
        margin: 1rem 0 !important;
        padding: 1.25rem !important;
    }

    /* Content text alignment for mobile */
    body.download-page .section-header p,
    body.download-page .card p,
    body.download-page .callout p,
    body.download-page .timeline-content p {
        text-align: justify;
        text-justify: inter-word;
        font-size: 0.95rem;
    }
}

/* Privacy, Terms, Register, Support-FAQ, VIP, Deposit, Withdraw, Invite Page Mobile Spacing Adjustments */
@media (max-width: 768px) {

    body.privacy-page .hero,
    body.terms-page .hero,
    body.register-page .hero,
    body.support-faq-page .hero,
    body.vip-bonuses-page .hero,
    body.deposit-page .hero,
    body.withdraw-page .hero,
    body.invite-page .hero {
        padding: 2rem 1rem !important;
    }

    body.privacy-page .hero h1,
    body.terms-page .hero h1,
    body.register-page .hero h1,
    body.support-faq-page .hero h1,
    body.vip-bonuses-page .hero h1,
    body.deposit-page .hero h1,
    body.withdraw-page .hero h1,
    body.invite-page .hero h1 {
        margin-top: 1rem !important;
        margin-bottom: 0.75rem !important;
        font-size: 1.8rem !important;
    }

    body.privacy-page .hero p,
    body.terms-page .hero p,
    body.register-page .hero p,
    body.support-faq-page .hero p,
    body.vip-bonuses-page .hero p,
    body.deposit-page .hero p,
    body.withdraw-page .hero p,
    body.invite-page .hero p {
        margin-bottom: 1.25rem !important;
    }

    body.privacy-page .section,
    body.terms-page .section,
    body.register-page .section,
    body.support-faq-page .section,
    body.vip-bonuses-page .section,
    body.deposit-page .section,
    body.withdraw-page .section,
    body.invite-page .section {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    body.privacy-page .section-header,
    body.terms-page .section-header,
    body.register-page .section-header,
    body.support-faq-page .section-header,
    body.vip-bonuses-page .section-header,
    body.deposit-page .section-header,
    body.withdraw-page .section-header,
    body.invite-page .section-header {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    body.privacy-page .container,
    body.terms-page .container,
    body.register-page .container,
    body.support-faq-page .container,
    body.vip-bonuses-page .container,
    body.deposit-page .container,
    body.withdraw-page .container,
    body.invite-page .container {
        padding: 1.5rem 1rem !important;
    }

    body.privacy-page .card,
    body.terms-page .card,
    body.register-page .card,
    body.support-faq-page .card,
    body.vip-bonuses-page .card,
    body.deposit-page .card,
    body.withdraw-page .card,
    body.invite-page .card,
    body.privacy-page div[style*="padding: 2.5rem"],
    body.terms-page div[style*="padding: 2.5rem"],
    body.register-page div[style*="padding: 2.5rem"],
    body.support-faq-page div[style*="padding: 2.5rem"],
    body.vip-bonuses-page div[style*="padding: 2.5rem"],
    body.deposit-page div[style*="padding: 2.5rem"],
    body.withdraw-page div[style*="padding: 2.5rem"],
    body.invite-page div[style*="padding: 2.5rem"],
    body.privacy-page div[style*="padding: 2rem"],
    body.terms-page div[style*="padding: 2rem"],
    body.register-page div[style*="padding: 2rem"],
    body.support-faq-page div[style*="padding: 2rem"],
    body.vip-bonuses-page div[style*="padding: 2rem"],
    body.deposit-page div[style*="padding: 2rem"],
    body.withdraw-page div[style*="padding: 2rem"],
    body.invite-page div[style*="padding: 2rem"] {
        padding: 1.25rem !important;
    }

    body.privacy-page div[style*="margin-bottom: 3rem"],
    body.terms-page div[style*="margin-bottom: 3rem"],
    body.register-page div[style*="margin-bottom: 3rem"],
    body.support-faq-page div[style*="margin-bottom: 3rem"],
    body.vip-bonuses-page div[style*="margin-bottom: 3rem"],
    body.deposit-page div[style*="margin-bottom: 3rem"],
    body.withdraw-page div[style*="margin-bottom: 3rem"],
    body.invite-page div[style*="margin-bottom: 3rem"],
    body.privacy-page div[style*="margin-top: 2rem"],
    body.terms-page div[style*="margin-top: 2rem"],
    body.register-page div[style*="margin-top: 2rem"],
    body.support-faq-page div[style*="margin-top: 2rem"],
    body.vip-bonuses-page div[style*="margin-top: 2rem"],
    body.deposit-page div[style*="margin-top: 2rem"],
    body.withdraw-page div[style*="margin-top: 2rem"],
    body.invite-page div[style*="margin-top: 2rem"] {
        margin-top: 1rem !important;
        margin-bottom: 1.25rem !important;
    }

    body.privacy-page .callout,
    body.terms-page .callout,
    body.register-page .callout,
    body.support-faq-page .callout,
    body.vip-bonuses-page .callout,
    body.deposit-page .callout,
    body.withdraw-page .callout,
    body.invite-page .callout {
        margin: 1rem 0 !important;
        padding: 1.25rem !important;
    }

    body.privacy-page .timeline,
    body.terms-page .timeline,
    body.register-page .timeline,
    body.support-faq-page .timeline,
    body.vip-bonuses-page .timeline,
    body.deposit-page .timeline,
    body.withdraw-page .timeline,
    body.invite-page .timeline {
        margin-top: 1rem !important;
    }

    body.privacy-page .timeline-item,
    body.terms-page .timeline-item,
    body.register-page .timeline-item,
    body.support-faq-page .timeline-item,
    body.vip-bonuses-page .timeline-item,
    body.deposit-page .timeline-item,
    body.withdraw-page .timeline-item,
    body.invite-page .timeline-item {
        margin-bottom: 1rem !important;
    }

    body.privacy-page .timeline-content,
    body.terms-page .timeline-content,
    body.register-page .timeline-content,
    body.support-faq-page .timeline-content,
    body.vip-bonuses-page .timeline-content,
    body.deposit-page .timeline-content,
    body.withdraw-page .timeline-content,
    body.invite-page .timeline-content {
        padding: 1rem !important;
    }

    body.privacy-page .grid,
    body.terms-page .grid,
    body.register-page .grid,
    body.support-faq-page .grid,
    body.vip-bonuses-page .grid,
    body.deposit-page .grid,
    body.withdraw-page .grid,
    body.invite-page .grid {
        margin-top: 1rem !important;
        gap: 0.75rem !important;
    }

    body.privacy-page .callout-accent,
    body.terms-page .callout-accent,
    body.register-page .callout-accent,
    body.support-faq-page .callout-accent,
    body.vip-bonuses-page .callout-accent,
    body.deposit-page .callout-accent,
    body.withdraw-page .callout-accent,
    body.invite-page .callout-accent {
        padding: 1.5rem 1.25rem !important;
    }

    body.privacy-page .callout-accent h2,
    body.terms-page .callout-accent h2,
    body.register-page .callout-accent h2,
    body.support-faq-page .callout-accent h2,
    body.vip-bonuses-page .callout-accent h2,
    body.deposit-page .callout-accent h2,
    body.withdraw-page .callout-accent h2,
    body.invite-page .callout-accent h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }

    body.privacy-page .section-header p,
    body.privacy-page .card p,
    body.privacy-page .callout p,
    body.privacy-page .timeline-content p,
    body.terms-page .section-header p,
    body.terms-page .card p,
    body.terms-page .callout p,
    body.terms-page .timeline-content p,
    body.register-page .section-header p,
    body.register-page .card p,
    body.register-page .callout p,
    body.register-page .timeline-content p,
    body.support-faq-page .section-header p,
    body.support-faq-page .card p,
    body.support-faq-page .callout p,
    body.support-faq-page .timeline-content p,
    body.vip-bonuses-page .section-header p,
    body.vip-bonuses-page .card p,
    body.vip-bonuses-page .callout p,
    body.vip-bonuses-page .timeline-content p,
    body.deposit-page .section-header p,
    body.deposit-page .card p,
    body.deposit-page .callout p,
    body.deposit-page .timeline-content p,
    body.withdraw-page .section-header p,
    body.withdraw-page .card p,
    body.withdraw-page .callout p,
    body.withdraw-page .timeline-content p,
    body.invite-page .section-header p,
    body.invite-page .card p,
    body.invite-page .callout p,
    body.invite-page .timeline-content p {
        text-align: justify;
        text-justify: inter-word;
        font-size: 0.95rem;
    }
}

/* Contact & Responsible Gaming Page Mobile Spacing Adjustments */
@media (max-width: 768px) {

    body.contact-page .hero,
    body.responsible-gaming-page .hero {
        padding: 2rem 1rem !important;
    }

    body.contact-page .hero h1,
    body.responsible-gaming-page .hero h1 {
        margin-top: 1rem !important;
        margin-bottom: 0.75rem !important;
        font-size: 1.8rem !important;
    }

    body.contact-page .hero p,
    body.responsible-gaming-page .hero p {
        margin-bottom: 1.25rem !important;
    }

    body.contact-page .section,
    body.responsible-gaming-page .section {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    body.contact-page .section-header,
    body.responsible-gaming-page .section-header {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    body.contact-page .container,
    body.responsible-gaming-page .container {
        padding: 1.5rem 1rem !important;
    }

    body.contact-page .card,
    body.responsible-gaming-page .card,
    body.contact-page div[style*="padding: 2.5rem"],
    body.responsible-gaming-page div[style*="padding: 2.5rem"],
    body.contact-page div[style*="padding: 2rem"],
    body.responsible-gaming-page div[style*="padding: 2rem"] {
        padding: 1.25rem !important;
    }

    body.contact-page div[style*="margin-bottom: 3rem"],
    body.responsible-gaming-page div[style*="margin-bottom: 3rem"],
    body.contact-page div[style*="margin-top: 2rem"],
    body.responsible-gaming-page div[style*="margin-top: 2rem"] {
        margin-top: 1rem !important;
        margin-bottom: 1.25rem !important;
    }

    body.contact-page .callout,
    body.responsible-gaming-page .callout {
        margin: 1rem 0 !important;
        padding: 1.25rem !important;
    }

    body.contact-page .timeline,
    body.responsible-gaming-page .timeline {
        margin-top: 1rem !important;
    }

    body.contact-page .timeline-item,
    body.responsible-gaming-page .timeline-item {
        margin-bottom: 1rem !important;
    }

    body.contact-page .timeline-content,
    body.responsible-gaming-page .timeline-content {
        padding: 1rem !important;
    }

    body.contact-page .grid,
    body.responsible-gaming-page .grid {
        margin-top: 1rem !important;
        gap: 0.75rem !important;
    }

    body.contact-page .callout-accent,
    body.responsible-gaming-page .callout-accent {
        padding: 1.5rem 1.25rem !important;
    }

    body.contact-page .callout-accent h2,
    body.responsible-gaming-page .callout-accent h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }

    body.contact-page .section-header p,
    body.contact-page .card p,
    body.contact-page .callout p,
    body.contact-page .timeline-content p,
    body.responsible-gaming-page .section-header p,
    body.responsible-gaming-page .card p,
    body.responsible-gaming-page .callout p,
    body.responsible-gaming-page .timeline-content p {
        text-align: justify;
        text-justify: inter-word;
        font-size: 0.95rem;
    }
}

/* About the Author Section Styles */
#author-section {
    margin-top: 4rem;
}

.author-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
    align-items: start;
}

.author-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.author-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
}

.author-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.author-img-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.author-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.author-card:hover .author-img {
    transform: scale(1.05);
}

.author-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.author-meta-info {
    text-align: left;
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.meta-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.meta-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
}

.meta-value a {
    color: var(--text-main);
    transition: color var(--transition-fast);
}

.meta-value a:hover {
    color: var(--primary);
}

.expertise-box {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
}

.expertise-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.expertise-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 0.5rem;
}

.expertise-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.expertise-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.expertise-list li:hover {
    color: var(--text-main);
    transform: translateX(4px);
}

.expertise-list li span {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    transition: transform var(--transition-fast);
}

.expertise-list li:hover span {
    transform: scale(1.2);
}

.author-main-content {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.author-main-content:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}

.bio-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.lead-bio {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-main);
}

.bio-paragraphs p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* ── Bio Read More (mobile only) ── */
.bio-extra {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bio-readmore-btn {
    display: none; /* hidden on desktop */
}

@media (max-width: 767px) {
    .bio-extra {
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.45s ease, opacity 0.35s ease;
        gap: 1rem;
    }

    .bio-extra.bio-extra--open {
        max-height: 600px;
        opacity: 1;
    }

    .bio-readmore-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        background: none;
        border: 1.5px solid var(--primary, #f97316);
        color: var(--primary, #f97316);
        font-size: 0.88rem;
        font-weight: 600;
        padding: 0.45rem 1rem;
        border-radius: 999px;
        cursor: pointer;
        align-self: flex-start;
        transition: background 0.2s ease, color 0.2s ease;
        margin-top: 0.25rem;
    }

    .bio-readmore-btn:hover,
    .bio-readmore-btn:focus-visible {
        background: var(--primary, #f97316);
        color: #fff;
        outline: none;
    }

    .bio-readmore-icon {
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .bio-readmore-btn[aria-expanded="true"] .bio-readmore-icon {
        transform: rotate(180deg);
    }
}

.commitment-card {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.commitment-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.commitment-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.commitment-icon {
    font-size: 1.3rem;
}

.commitment-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-hover);
    margin: 0;
}

.commitment-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.author-contact-notice {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Media Query for Mobile/Tablets */
@media (max-width: 992px) {
    .author-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .author-sidebar {
        flex-direction: column;
    }
}

/* Page-specific desktop spacing overrides */
@media (min-width: 769px) {
    .about-page .hero,
    .register-page .hero,
    .login-page .hero,
    .download-page .hero {
        padding: 3.5rem 1.5rem !important;
    }
    .about-page .container,
    .register-page .container,
    .login-page .container,
    .download-page .container {
        padding-top: 2rem !important;
        padding-bottom: 1.5rem !important;
    }
    .about-page .section,
    .register-page .section,
    .login-page .section,
    .download-page .section {
        margin-bottom: 2.5rem !important;
    }
    .about-page .section[style*="margin-top"],
    .register-page .section[style*="margin-top"],
    .login-page .section[style*="margin-top"],
    .download-page .section[style*="margin-top"] {
        margin-top: 2.5rem !important;
    }
    .about-page footer,
    .register-page footer,
    .login-page footer,
    .download-page footer {
        margin-top: 2.5rem !important;
    }
}

/* Page-specific card styling for Register Page: align icon and heading, remove trailing delimiters */
.register-page .grid .card {
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    grid-template-rows: auto auto !important;
    grid-template-areas:
        "icon heading"
        "content content" !important;
    gap: 0.75rem 1rem !important;
    align-items: center !important;
    padding: 1.5rem !important;
}

.register-page .grid .card .card-icon {
    grid-area: icon !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    align-self: center !important;
}

.register-page .grid .card h3 {
    grid-area: heading !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    align-self: center !important;
    font-size: 1.25rem !important;
}

.register-page .grid .card h3::after {
    content: none !important;
}

.register-page .grid .card p,
.register-page .grid .card .card-list {
    grid-area: content !important;
    margin-top: 0.75rem !important;
}

/* Page-specific card styling for Login Page: align icon and heading, remove trailing delimiters */
.login-page .grid .card {
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    grid-template-rows: auto auto !important;
    grid-template-areas:
        "icon heading"
        "content content" !important;
    gap: 0.75rem 1rem !important;
    align-items: center !important;
    padding: 1.5rem !important;
}

.login-page .grid .card .card-icon {
    grid-area: icon !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    align-self: center !important;
}

.login-page .grid .card h3 {
    grid-area: heading !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    align-self: center !important;
    font-size: 1.25rem !important;
}

.login-page .grid .card h3::after {
    content: none !important;
}

.login-page .grid .card p,
.login-page .grid .card .card-list {
    grid-area: content !important;
    margin-top: 0.75rem !important;
}

/* --- Premium Dark Theme & Layout Overrides --- */
.hero {
    background: radial-gradient(circle at 50% 50%, rgba(244, 63, 94, 0.12) 0%, rgba(9, 13, 22, 1) 100%) !important;
}
.hero h1 {
    text-shadow: 0 0 15px rgba(244, 63, 94, 0.3);
}
.callout {
    background-color: var(--bg-card) !important;
    color: var(--text-main) !important;
}
.callout-info {
    border-left-color: var(--primary) !important;
    background: linear-gradient(to right, var(--primary-light), rgba(17, 24, 39, 0.65)) !important;
}
.callout-warning {
    border-left-color: var(--warning) !important;
    background: linear-gradient(to right, var(--warning-light), rgba(17, 24, 39, 0.65)) !important;
}
.callout-accent {
    border-left-color: var(--accent) !important;
    background: linear-gradient(to right, var(--accent-light), rgba(17, 24, 39, 0.65)) !important;
}
.comparison-note {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
}
.invite-summary-box, .vip-levels-note {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-left: 4px solid var(--accent) !important;
}
.accordion-item {
    background-color: var(--bg-card) !important;
}
.accordion-header:hover {
    background-color: rgba(255, 255, 255, 0.03) !important;
}
th {
    background-color: rgba(9, 13, 22, 0.8) !important;
    color: var(--text-main) !important;
}
tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.02) !important;
}

/* --- Interactive Steps Tabs --- */
.step-tabs-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
}
.step-tab-buttons {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}
.step-tab-buttons::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}
.step-tab-btn {
    background: none;
    border: 1px solid transparent;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-fast);
}
.step-tab-btn:hover {
    color: var(--primary);
    background-color: rgba(244, 63, 94, 0.08);
}
.step-tab-btn.active {
    color: #fff;
    background: var(--gradient-red);
    box-shadow: 0 4px 12px var(--primary-glow);
}
.step-tab-panel {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}
.step-tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Dynamic Bonus Simulator --- */
.bonus-simulator-card {
    background: linear-gradient(145deg, rgba(23, 31, 53, 0.7) 0%, rgba(13, 19, 35, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    max-width: 580px;
    margin: 2.5rem auto;
    position: relative;
    overflow: hidden;
}
.bonus-simulator-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.simulator-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.simulator-input-group {
    margin-bottom: 2rem;
}
.simulator-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.simulator-label-row label {
    color: var(--text-muted);
}
.simulator-label-row .input-value-display {
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: 800;
}
.simulator-range-input {
    width: 100%;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    height: 8px;
    border-radius: 4px;
    outline: none;
    margin-bottom: 1.25rem;
}
.simulator-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
    transition: transform var(--transition-fast);
}
.simulator-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}
.simulator-presets {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}
.preset-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}
.preset-btn:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}
.simulator-results {
    background: rgba(9, 13, 22, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.75rem;
}
.result-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.result-label {
    color: var(--text-muted);
    font-weight: 600;
}
.result-value {
    font-weight: 800;
    color: #fff;
    font-size: 1.1rem;
}
.result-value.highlight-bonus {
    color: var(--success);
}
.result-value.highlight-total {
    color: var(--accent);
    font-size: 1.3rem;
}
.simulator-cta-btn {
    width: 100%;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px var(--primary-glow);
}

/* --- Troubleshooting Checklist Checking --- */
.troubleshoot-container {
    max-width: 800px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.troubleshoot-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}
.troubleshoot-card:hover {
    border-color: rgba(244, 63, 94, 0.25);
    box-shadow: var(--shadow-md);
}
.troubleshoot-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-main);
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background-color var(--transition-fast);
}
.troubleshoot-question:hover {
    background-color: rgba(255, 255, 255, 0.02);
}
.troubleshoot-icon {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: transform var(--transition-normal);
}
.troubleshoot-card.active .troubleshoot-icon {
    transform: rotate(180deg);
    color: var(--primary);
}
.troubleshoot-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}
.troubleshoot-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 1.25rem;
}
.troubleshoot-card.active {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

/* --- Pure CSS Phone Mockup Screens --- */
.register-phone-frame {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 260px;
    height: 490px;
    background: #0d1220;
    border: 8px solid #1e293b;
    border-radius: 36px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5), inset 0 0 10px rgba(255,255,255,0.05);
    overflow: hidden;
    margin: 0 auto;
}
.register-phone-notch {
    width: 120px;
    height: 18px;
    background: #1e293b;
    border-radius: 0 0 12px 12px;
    margin: 0 auto;
    z-index: 10;
    flex-shrink: 0;
}
.mockup-screen {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1rem;
    font-family: var(--font-sans);
    color: #fff;
    overflow-y: auto;
    font-size: 0.82rem;
    background: radial-gradient(circle at 50% 0%, #1e1b4b 0%, #09090b 100%);
    text-align: left;
}
.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mockup-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.mockup-logo-badge {
    width: 22px;
    height: 22px;
    background: var(--gradient-red);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-glow);
}
.mockup-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.mockup-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.mockup-input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 0.5rem 0.6rem;
    color: #fff;
    font-size: 0.78rem;
    pointer-events: none;
    box-sizing: border-box;
}
.mockup-btn {
    margin-top: auto;
    width: 100%;
    background: var(--gradient-red);
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 0.6rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(244,63,94,0.3);
    font-size: 0.78rem;
    border: none;
}

/* VIP Mockup Specifics */
.vip-badge-display {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    color: #000;
    font-weight: 900;
    font-size: 1.15rem;
    padding: 0.8rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.35);
    margin-bottom: 0.75rem;
}
.vip-progress-bar {
    background: rgba(255,255,255,0.1);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}
.vip-progress-fill {
    background: var(--accent);
    width: 75%;
    height: 100%;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}
.vip-benefit-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
}

/* Deposit Mockup Specifics */
.deposit-balance-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 0.6rem;
    text-align: center;
    margin-bottom: 0.5rem;
}
.deposit-balance-box .bal-label {
    color: var(--text-muted);
    font-size: 0.68rem;
}
.deposit-balance-box .bal-amount {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--success);
}
.deposit-channel-pill {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid var(--success);
    color: var(--success);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    display: inline-block;
    text-align: center;
}
.deposit-channels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}
.deposit-channel-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 0.4rem;
    text-align: center;
    font-size: 0.72rem;
}
.deposit-channel-item.active {
    border-color: var(--accent);
    background: rgba(251, 191, 36, 0.05);
}

/* Rebranding and General Style Cleanups */
.logo-link img {
    height: 48px;
    width: auto;
    object-fit: contain;
}
.register-phone-img {
    display: none !important; /* Hide image elements when using mockups */
}




