:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --accent-gold: #d4af37;
    --metallic-gold: #f4e4c1;
    --burgundy: #6b1f3a;
    --burgundy-dark: #4a1527;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --text-light: #cccccc;

    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;

    --section-padding: 100px 0;
    --container-max: 1400px;
}

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

body {
    font-family: var(--font-secondary);
    background-color: var(--primary-black);
    color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.navigation.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    transition: transform 0.3s ease;
}

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

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

.nav-links a {
    color: var(--off-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-button {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 13px;
}

.login-button {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.login-button:hover {
    background: rgba(212, 175, 55, 0.1);
}

.register-button {
    background: linear-gradient(135deg, var(--accent-gold), var(--metallic-gold));
    color: var(--primary-black);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.register-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(107, 31, 58, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--accent-gold);
    padding: 10px 30px;
    border-radius: 30px;
    margin-bottom: 30px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    color: var(--accent-gold);
    display: block;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--metallic-gold));
    color: var(--primary-black);
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 18px 50px;
    border: 2px solid var(--accent-gold);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.hero-feature {
    text-align: center;
}

.hero-feature-icon {
    font-size: 36px;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.hero-feature-text {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-floor-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--primary-black), var(--secondary-black));
    position: relative;
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.game-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 15px 35px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid transparent;
    border-radius: 30px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover,
.category-tab.active {
    background: transparent;
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.game-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.9));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-card-overlay {
    opacity: 1;
}

.game-card-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

.view-all-games {
    text-align: center;
}

.btn-view-all {
    background: transparent;
    color: var(--accent-gold);
    padding: 15px 40px;
    border: 2px solid var(--accent-gold);
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
}

.sports-lounge-section {
    padding: var(--section-padding);
    background: var(--secondary-black);
    position: relative;
}

.sports-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sports-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.sports-image img {
    width: 100%;
    height: auto;
    display: block;
}

.sports-info h2 {
    font-family: var(--font-primary);
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.sports-features {
    list-style: none;
    margin: 30px 0;
}

.sports-features li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.sports-features li::before {
    content: '✓';
    color: var(--accent-gold);
    font-size: 24px;
    font-weight: bold;
}

.vault-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--secondary-black), var(--primary-black));
}

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

.vault-card {
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.vault-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.vault-icon {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.vault-card h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
}

.vault-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.payment-logo {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 80px;
    transition: transform 0.3s ease;
}

.payment-logo:hover {
    transform: scale(1.1);
}

.benefits-section {
    padding: var(--section-padding);
    background: var(--primary-black);
}

.benefits-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    transition: all 0.5s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.benefit-card:hover::before {
    top: -25%;
    right: -25%;
}

.benefit-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-black);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.benefit-title {
    font-family: var(--font-primary);
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
}

.benefit-description {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.benefit-cta {
    background: var(--accent-gold);
    color: var(--primary-black);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.benefit-cta:hover {
    background: var(--metallic-gold);
    transform: translateX(5px);
}

.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--burgundy-dark), var(--primary-black));
    position: relative;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

.signup-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.trust-badge img {
    height: 30px;
}

.footer {
    background: var(--primary-black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 40px 30px;
}

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

.footer-section h3 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-light);
    font-size: 14px;
}

.responsible-gaming {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.responsible-gaming img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.responsible-gaming img:hover {
    opacity: 1;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
    
    .sports-content {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 12px 0;
        text-align: center;
    }
    
    .nav-button {
        display: block;
        width: 100%;
        padding: 15px 24px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .vault-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-carousel {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .logo {
        height: 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-features {
        gap: 30px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        gap: 15px;
    }
    
    .payment-logo {
        min-width: 100px;
        height: 70px;
        padding: 15px 20px;
    }
}