/* 
  Theme: Sharp Luxury 
  Description: High contrast, geometric, premium casino aesthetic.
*/

:root {
    /* Palette */
    --color-bg-dark: #050505;
    --color-bg-card: #121212;
    --color-gold: #d4af37;
    --color-gold-glow: rgba(212, 175, 55, 0.4);
    --color-crimson: #c90000;
    --color-text-main: #ffffff;
    --color-text-muted: #a0a0a0;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;

    /* Sharpness */
    --border-sharp: 1px solid rgba(255, 255, 255, 0.1);
    --border-gold: 1px solid var(--color-gold);
    --clip-path-sharp: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

/* Inline Content Links */
p a,
.section-reality p a,
.section-roadmap p a,
.tutorial-step p a,
.faq-answer p a {
    color: var(--color-gold);
    font-weight: 600;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 1px;
    transition: all 0.3s ease;
}

p a:hover,
.section-reality p a:hover,
.section-roadmap p a:hover,
.tutorial-step p a:hover,
.faq-answer p a:hover {
    color: #fff;
    border-bottom-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.flex {
    display: flex;
}

.active {
    color: var(--color-gold) !important;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.grid {
    display: grid;
}

.gap-4 {
    gap: var(--spacing-md);
}

.text-gold {
    color: var(--color-gold);
}

/* Components */
.btn-sharp {
    background: var(--color-gold);
    color: #000;
    padding: 12px 32px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    clip-path: var(--clip-path-sharp);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-sharp:hover {
    background: #f0c43f;
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--color-gold-glow);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    clip-path: var(--clip-path-sharp);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Header */
/* Header */
.main-header {
    padding: 15px 0;
    /* Slightly more compact */
    background: rgba(0, 0, 0, 0.85);
    /* Darker */
    backdrop-filter: blur(15px);
    /* Stronger blur */
    border-bottom: 0;
    /* Remove default border */
    position: fixed;
    /* Fixed position as requested */
    width: 100%;
    top: 0;
    z-index: 1000;
}

.main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    /* Gold Gradient Line */
    opacity: 0.8;
}

/* Body Padding Restored for Desktop - Matches Header Height */
body {
    padding-top: 80px;
}

.nav-links {
    gap: 30px;
}

.menu-toggle,
.mobile-auth-buttons {
    display: none;
}

.nav-links a:hover {
    color: var(--color-gold);
}

.header-logo {
    max-height: 50px;
    /* Adjust size to fit header */
    width: auto;
    display: block;
}

/* Hero */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    /* Updated Background */
    background-image: url('assets/hero-bg.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    /* Center align for better balance */
}

.hero h1 {
    font-size: 4.5rem;
    /* Larger but lighter */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: linear-gradient(180deg, #ffffff 0%, #b3b3b3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
    text-transform: none;
    /* Let the mixed case shine */
}

.hero p {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin: 0 auto 50px;
    /* Center the paragraph */
    max-width: 600px;
    line-height: 1.8;
    /* More breathing room */
    font-weight: 300;
}

.cta-group {
    display: flex;
    justify-content: center;
    /* Center buttons */
    gap: 20px;
}

/* Decorations */
.glow-effect {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--color-gold);
    filter: blur(180px);
    opacity: 0.15;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Game Grid Section */
.section-games {
    padding: 120px 0;
    /* Increased from 80px for better separation */
    background: #080808;
}

.section-title {
    margin-bottom: 60px;
    /* Increased from 40px */
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-gold);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-card {
    position: relative;
    background: var(--color-bg-card);
    overflow: hidden;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
}

.game-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.game-card:hover img {
    transform: scale(1.1);
}

.game-info {
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.game-card:hover .game-info {
    transform: translateY(0);
}

.game-info h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.game-info span {
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }


    .game-grid {
        grid-template-columns: 1fr;
    }
}

/* Feature Section */
.section-features {
    padding: 120px 0;
    background: url('assets/bg-features.webp') no-repeat center center/cover;
    position: relative;
    text-align: center;
}

.section-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Dark overlay to keep text readable */
    z-index: 0;
}

.section-features .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    clip-path: var(--clip-path-sharp);
    transition: 0.3s ease;
}

.feature-box:hover {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-10px);
}

.feature-box h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.feature-box h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--color-gold);
    margin: 10px auto 0;
}

.feature-box p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 4rem;


    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    font-weight: 900;
}

/* Game Lobby Section */
/* Game Lobby Section */
.section-lobby {
    padding: 120px 0;
    /* Rich Gradient for Depth */
    background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lobby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.lobby-card {
    background-color: transparent;
    border-radius: 8px;
    height: 340px;
    perspective: 1000px;
    border: none;
    cursor: pointer;
}

.lobby-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.lobby-card:hover .lobby-card-inner {
    transform: rotateY(180deg);
    border-color: var(--color-gold);
}

.lobby-card-front,
.lobby-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 8px;
    overflow: hidden;
}

/* Front Styling */
.lobby-card-front {
    background-color: var(--color-bg-card);
}

.lobby-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lobby-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, #000 0%, transparent 100%);
    z-index: 2;
    text-align: left;
}

/* Back Styling */
.lobby-card-back {
    background: #111;
    background-image: linear-gradient(45deg, #111 25%, #1a1a1a 25%, #1a1a1a 50%, #111 50%, #111 75%, #1a1a1a 75%, #1a1a1a 100%);
    background-size: 20px 20px;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 1px solid var(--color-gold);
}

.lobby-card-back h3 {
    color: var(--color-gold);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.lobby-card-back p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.lobby-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
    width: 100%;
}

.lobby-features li {
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.lobby-features li::before {
    content: '✦';
    color: var(--color-gold);
}

.btn-lobby-action {
    background: var(--color-gold);
    color: #000;
    padding: 10px 25px;
    font-weight: bold;
    text-transform: uppercase;
    clip-path: var(--clip-path-sharp);
    transition: 0.3s;
}

.btn-lobby-action:hover {
    background: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .lobby-grid {
        grid-template-columns: 1fr;
    }
}

/* Partnerships Section */
/* Partnerships Section */
.section-partners {
    padding: 60px 0 80px;
    /* Spotlight Effect */
    background: radial-gradient(circle at center, #111 0%, #000 100%);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.1);
    /* Much brighter */
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    clip-path: var(--clip-path-sharp);
    position: relative;
    overflow: hidden;
}

.partner-card:hover {
    background: #fff;
    border-color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.partner-card span {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    /* Bolder */
    font-size: 1.3rem;
    /* Larger */
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
    z-index: 2;
}

.partner-card:hover span {
    color: #000;
    /* Invert text on hover */
}



/* Roadmap Section */
/* Roadmap Section */
.section-roadmap {
    padding: 120px 0;
    background: url('assets/bg-features.webp') no-repeat center center/cover;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Add contrast with shadow */
    box-shadow: inset 0 0 100px #000;
}

.section-roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Slightly darker overlay */
    z-index: 0;
}

.section-roadmap .container {
    position: relative;
    z-index: 1;
}

.section-roadmap {
    overflow: hidden;
}

.roadmap-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.roadmap-col h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 30px;
    border-left: 4px solid var(--color-gold);
    padding-left: 20px;
}

.roadmap-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.step-marker {
    width: 40px;
    height: 40px;
    background: var(--color-gold);
    color: #000;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
    flex-shrink: 0;
}

.roadmap-step::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 19px;
    width: 2px;
    height: calc(100% + 10px);
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.roadmap-step:last-child::before {
    display: none;
}

.step-content h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.step-content p {
    color: #888;
    font-size: 0.95rem;
}

.perk-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

.perk-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
}

.perks-scroll-container {
    max-height: 400px;
    /* Show approx 3.5 items */
    overflow-y: auto;
    padding-right: 10px;
    /* Spacing for scrollbar */
}

/* Custom Scrollbar for Perks */
.perks-scroll-container::-webkit-scrollbar {
    width: 6px;
}

@media (max-width: 768px) {
    .roadmap-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .roadmap-col h3 {
        font-size: 1.5rem;
    }
}

.perks-scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.perks-scroll-container::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 3px;
}

.perks-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #e5c147;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Footer structure */
/* Footer structure */
/* Footer structure */
.main-footer {
    background: #080808;
    border-top: 4px solid var(--color-gold);
    padding: 0 0 30px;
    margin-top: 0;
    font-size: 0.95rem;
    color: #999;
}

.footer-trust {
    display: flex;
    justify-content: space-around;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    font-size: 2rem;
    color: var(--color-gold);
}

.trust-item h4 {
    color: #fff;
    margin: 0;
    font-size: 1rem;
}

.trust-item p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    /* Brand col is wider */
    gap: 50px;
    margin-bottom: 60px;
}

.brand-col p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.license-badges {
    display: flex;
    gap: 10px;
}

.license-badges span {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
    color: #fff;
    opacity: 0.7;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.pay-item {
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 4px;
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Quick Access Section */
.section-access {
    padding: 120px 0;
    /* High contrast dark grey block */
    background: #111;
    text-align: center;
    border-top: 1px solid var(--color-gold);
    /* Gold separator */
    border-bottom: 1px solid var(--color-gold);
}

/* FAQ Section */
.section-faq {
    padding: 120px 0;
    background: #050505;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.faq-item.faq-active {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
    flex: 1;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--color-gold);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.faq-active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.access-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0 60px;
    flex-wrap: wrap;
}

.btn-money {
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: var(--clip-path-sharp);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    min-width: 250px;
}

.btn-login-money {
    background: var(--color-gold);
    color: #000;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.btn-login-money:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
    background: #fff;
}

.btn-register-money {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Responsive & Mobile Optimization */
@media (max-width: 1024px) {
    .lobby-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        /* Allow shrinking on tablets */
    }
}

@media (max-width: 768px) {

    /* Global Section Spacing */
    .section-games,
    .section-features,
    .section-lobby,
    .section-partners,
    .section-roadmap,
    .section-access,
    .section-faq {
        padding: 80px 0;
        /* Double the previous mobile padding */
    }

    /* Hero Type */
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 15px;
        /* Prevent text touching edges */
    }

    /* Navigation */
    .header-actions .auth-buttons {
        display: none;
        /* Hide header buttons on mobile */
    }

    .mobile-auth-buttons {
        display: flex !important;
        flex-direction: column;
        gap: 12px;
        width: 100% !important;
        max-width: 300px;
        margin-top: 40px;
        position: relative;
        z-index: 10;
    }

    .mobile-auth-buttons a {
        height: 54px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 12px;
        font-size: 1rem !important;
        letter-spacing: 1px !important;
        font-weight: 800 !important;
        text-shadow: none !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .btn-login-mobile {
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(212, 175, 55, 0.4) !important;
        color: var(--color-gold) !important;
        backdrop-filter: blur(10px);
    }

    .btn-register-mobile {
        background: linear-gradient(135deg, var(--color-gold) 0%, #ffdf33 100%) !important;
        color: #000 !important;
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    }

    .btn-register-mobile span,
    .btn-login-mobile span {
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* Center bars */
        gap: 5px;
        cursor: pointer;
        z-index: 2000;
        margin-left: 15px;
        width: 48px;
        /* Larger touch target */
        height: 48px;
        /* Square button */
        border: 1px solid var(--color-gold);
        /* Gold Border */
        background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
        /* Gold Glow Center */
        border-radius: 6px;
        /* Slightly rounded corners matching theme */
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5), inset 0 0 5px rgba(212, 175, 55, 0.2);
        transition: all 0.3s ease;
    }

    .menu-toggle:hover {
        background: rgba(212, 175, 55, 0.2);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    }

    .bar {
        width: 32px;
        height: 2px;
        /* Thinner for elegance */
        background-color: var(--color-gold);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        /* Smooth bouncy spring */
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
        /* Glowing effect */
    }

    .bar:nth-child(2) {
        width: 24px;
        /* Uneven bars for style */
    }

    .nav-links {
        display: flex;
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        /* Full screen immersion */
        background: #000000;
        /* Solid black for high contrast */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        /* Space out the huge text */
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1500;
        transform: translateX(100%);
    }

    .nav-links.nav-active {
        transform: translateX(0);
    }

    .nav-links a {
        font-family: var(--font-heading);
        /* Ensure heading font */
        font-size: 2.5rem;
        /* Massive text */
        font-weight: 800;
        /* Extra Bold */
        color: #333;
        /* Dark grey by default (inactive look) */
        text-transform: uppercase;
        letter-spacing: 2px;
        text-decoration: none;
        transition: all 0.4s ease;
        padding: 0;
        /* Remove padding */
        border: none;
        /* Remove borders */
        margin: 10px 0;
        display: block;
        /* Default block */
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--color-gold);
        transform: scale(1.1);
        /* Slight pulse */
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
        /* Gold Neon Glow */
        background: none;
        /* Remove gradients */
        padding-left: 0;
        /* Remove shift */
    }

    .nav-links a::after {
        display: none;
        /* Remove arrows */
    }

    /* Burger Animation */
    /* Burger Animation */
    .toggle .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
        width: 32px;
        /* Restore full width */
    }

    .toggle .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .toggle .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
        width: 32px;
    }

    /* Lobby Grid - Critical Fix */
    .lobby-grid {
        grid-template-columns: 1fr;
        /* Force single column stack */
        gap: 20px;
    }

    .lobby-card {
        height: 300px;
        /* Slightly smaller cards on mobile */
    }

    /* Access Buttons */
    .access-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-money {
        width: 100%;
        /* Full width buttons */
        min-width: unset;
        font-size: 1.1rem;
        padding: 15px;
    }

    /* Feature & Roadmap Grids */
    .features-grid,
    .roadmap-container,
    .help-grid,
    .tutorial-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        /* Tighter gap for 2-column mobile */
    }

    .roadmap-col h3 {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.8rem;
        /* Smaller section titles */
    }
}

.btn-register-money:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-5px);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.help-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 4px;
}

.help-item h4 {
    color: var(--color-gold);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.help-item p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Login Tutorial */
.login-tutorial {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tutorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tutorial-step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-badge {
    background: var(--color-gold);
    color: #000;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    clip-path: var(--clip-path-sharp);
    flex-shrink: 0;
    margin-top: 2px;
}

.step-info h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.step-info p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.1rem;
    border-left: 3px solid var(--color-gold);
    padding-left: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .brand-col {
        grid-column: span 1;
    }

    .footer-trust {
        flex-direction: column;
        align-items: flex-start;
    }

    .wrap-mobile {
        flex-direction: column-reverse;
        gap: 20px;
    }
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    /* Slight rounded for touch targets */
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--color-gold);
    color: #000;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Detailed Bonus Cards - Syabas99 Premium Style */
.bonus-card-item {
    background: linear-gradient(145deg, #111, #0a0a0a);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    /* Sharper corners */
    overflow: hidden;
    transition: all 0.4s ease;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    /* Slight cut corner */
}

.bonus-card-item:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.bonus-card-header {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px 20px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bonus-card-header h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bonus-highlight {
    color: var(--color-gold);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 10px 0 0;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.bonus-details-list {
    list-style: none;
    padding: 25px 30px;
    margin: 0;
    /* Removed striped background for cleaner look with ticks */
}

.bonus-details-list li {
    display: flex;
    align-items: center;
    /* Center align with tick */
    gap: 15px;
    /* Space between tick and text */
    margin-bottom: 12px;
    color: #ddd;
    /* Slightly lighter for readability */
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtler divider */
    padding-bottom: 10px;
    text-align: left;
    /* Ensure left align */
}

.bonus-details-list li:last-child {
    border-bottom: none;
    margin-bottom: 0px;
}

/* The Gold Tick */
.bonus-details-list li::before {
    content: '✓';
    color: var(--color-gold);
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    /* Glowing tick */
}

/* Optional: Keep label/value span styling just in case, but tick is primary */
.bonus-details-list li span.label {
    display: none;
    /* Hide labels if switching back to simple list */
}

.bonus-details-list li span.value {
    color: #fff;
    font-weight: 400;
    /* Regular weight for list items */
    text-align: left;
}

.bonus-card-footer {
    padding: 0 25px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.btn-bonus-claim {
    width: 100%;
    background: var(--color-gold);
    color: #000;
    font-weight: 900;
    border: none;
    padding: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    letter-spacing: 2px;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-bonus-claim:hover {
    background: #fff;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

/* Guide Grid Box Design */
.guide-grid .content-item {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.guide-grid .content-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #151515;
}

.guide-grid .content-item h3 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
    margin-bottom: 20px !important;
}

/* Animation keyframes */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Final Mobile Hero Overrides */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem !important;
        margin-bottom: 20px !important;
    }

    .hero p {
        font-size: 0.95rem !important;
        padding: 0 10px !important;
        margin-bottom: 30px !important;
    }

    .cta-group {
        flex-direction: column !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        gap: 12px !important;
    }

    .cta-group .btn-sharp {
        width: 100% !important;
        margin: 0 !important;
    }
}