:root {
    --primary-color: #d4af37;
    --secondary-color: #111;
    --text-color: #eee;
    --accent-color: #ff007f; /* Updated to Pink "Rosa" */
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --border-color: #333;
    --header-bg: rgba(0,0,0,0.9);
    --overlay-bg: rgba(0, 0, 0, 0.6);
    --text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    --main-gradient: radial-gradient(circle at top center, #2e0018 0%, #000000 80%);
    --section-gradient: linear-gradient(180deg, #111 0%, #1a0510 100%);
}

body.light-mode {
    --primary-color: #b8860b;
    --secondary-color: #f0f0f0;
    --text-color: #333;
    --accent-color: #d81b60; /* Darker Pink for Light Mode */
    --dark-bg: #f4f4f4;
    --card-bg: #ffffff;
    --border-color: #ddd;
    /* Header stays dark in light mode */
    --header-bg: rgba(0,0,0,0.9);
    --overlay-bg: rgba(255, 255, 255, 0.85);
    --text-shadow: none;
    --main-gradient: radial-gradient(circle at top center, #fff0f6 0%, #f4f4f4 80%);
    --section-gradient: linear-gradient(180deg, #f0f0f0 0%, #ffeef5 100%);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--main-gradient);
    background-attachment: fixed;
    color: var(--text-color);
    overflow-x: hidden;
    transition: background 0.3s, color 0.3s;
}

/* Header & Hero */
header {
    background: radial-gradient(circle at top center, #660033 0%, #000000 85%); /* More colorful gradient */
    background-size: cover;
    background-position: top center;
     /* Removed solid black */
    
    /* Casino Card Suits Pattern Removed for cleaner look matching body */
    /* background-image: ... */
    
    padding: 12px 0;
    position: absolute; /* Changed from fixed to absolute so it scrolls with page */
    width: 100%;
    z-index: 1000;
    
    /* Gradient Border: Gold -> Pink -> Gold */
    border-bottom: 3px solid var(--primary-color);
    border-image: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--primary-color) 100%) 1;
    
    box-shadow: 0 5px 25px rgba(0,0,0,0.9);
    transition: all 0.3s;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: var(--primary-color); /* Gold color */
    text-decoration: none;
    font-weight: 600; /* Slightly bolder */
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s;
    letter-spacing: 1px;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 20px;
}

.nav-link:hover {
    color: #fff;
    background: var(--accent-color); /* Pink background */
    box-shadow: 0 0 15px var(--accent-color);
    border-color: var(--accent-color);
}

.theme-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.theme-btn:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.logo-container img {
    height: 100px;
    vertical-align: middle;
}

.hero {
    height: 100vh;
    /* Removed solid gradient background to show animation */
    /* background: radial-gradient(circle at center, var(--card-bg) 0%, var(--dark-bg) 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px; /* Offset for fixed header */
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    padding: 2rem;
    background: var(--overlay-bg);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    text-shadow: var(--text-shadow);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px; /* Increased padding */
    background: linear-gradient(45deg, #d4af37, #f1c40f);
    color: #000;
    text-decoration: none;
    font-weight: 800; /* Bolder text */
    border-radius: 50px;
    font-size: 1.4rem; /* Larger font */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    min-width: 220px; /* Wider button */
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.6);
}

.channel-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 15px;
    background: #000; /* Black */
    color: var(--accent-color); /* Pink Text */
    border: 2px solid var(--accent-color); /* Pink Border */
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    font-size: 1rem;
    /* margin: 10px; Removed to let flex gap handle spacing */
    transition: transform 0.3s ease, background 0.3s, color 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    min-width: 120px;
    text-align: center;
}

.channel-button:hover {
    transform: translateY(-3px);
    background: var(--accent-color); /* Pink Background on Hover */
    color: #fff; /* White Text */
    box-shadow: 0 6px 15px rgba(255, 0, 127, 0.5);
}

/* Partners Section */
.partners-section {
    padding: 6rem 0; /* Increased padding */
    margin-top: 4rem; /* Added margin to push it down */
    background: var(--section-gradient); /* Restored original gradient */
    text-align: center;
    border-top: 2px solid var(--primary-color);
}

.partners-section h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-card {
    background: #000; /* Force black background to match theme */
    padding: 15px;
    border-radius: 10px;
    width: 250px; /* Increased width */
    height: 120px; /* Increased height */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s, transform 0.3s;
    text-decoration: none; /* Ensure no underline for anchor */
    cursor: pointer;
}

.partner-card:hover {
    border-color: var(--accent-color); /* Pink border on hover */
    transform: scale(1.05);
}

.partner-logo {
    max-width: 90%; /* Prevent touching edges */
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain; /* Ensure ratio is preserved */
    /* filter: grayscale(100%); Removed grayscale so they are always colored */
    transition: transform 0.3s;
}

.partner-card:hover .partner-logo {
    /* filter: grayscale(0%); */
    transform: scale(1.1); /* Slight zoom on logo too */
}

/* WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.wa-tooltip {
    position: fixed;
    bottom: 110px;
    right: 40px;
    background: #fff;
    color: #333;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: none; /* Can be toggled with JS */
}

/* Claims Section */
.claims-section {
    padding: 4rem 0;
    background: transparent; /* Changed to show main gradient or use consistent gradient */
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.claims-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.15); /* Pink shadow */
    border: 1px solid var(--accent-color); /* Pink border */
}

.claims-title {
    color: var(--accent-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.claims-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--accent-color); /* Pink */
    color: white;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.4);
}

.claims-btn:hover {
    background: #c2185b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 127, 0.6);
}

footer {
    padding: 2rem;
    text-align: center;
    background-color: var(--secondary-color); /* Kept solid for footer */
    color: var(--text-color);
    border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }

    .navbar {
        flex-direction: row; /* Keep horizontal */
        justify-content: space-between;
        padding: 0 15px;
    }
    
    .logo-container img {
        height: 75px; /* Adjusted size for mobile */
    }

    .nav-links {
        gap: 15px;
    }

    .nav-link {
        font-size: 0.8rem; /* Smaller text */
    }

    .theme-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        margin: 0 1rem;
        padding: 1.5rem;
        margin-top: 20px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .partners-grid {
        gap: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

@media (max-width: 480px) {
    header {
        position: absolute !important; /* Force absolute on mobile with high priority */
        top: 0;
        left: 0;
        width: 100%;
        padding-bottom: 50px; /* Slightly reduced spacing */
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .logo-container img {
        height: 140px; /* Much bigger logo for mobile */
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 15px;
        margin-bottom: 20px; /* Adjusted spacing */
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 5px;
    }
    
    .hero {
        padding-top: 220px; /* Adjusted to match new header height */
    }

    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .partners-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .partner-card {
        width: 80%;
    }

    /* Mobile Buttons Adjustment */
    .cta-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-button, .channel-button {
        width: 85%;
        max-width: 320px;
        box-sizing: border-box; /* Prevent padding from overflowing width */
    }

    .cta-button {
        font-size: 1.2rem;
        padding: 15px 20px;
    }

    .channel-button {
        width: 75%; /* Slightly narrower for secondary action */
        font-size: 0.9rem;
    }
}

/* Video Styling in Hero */
.video-container {
    width: 100%;
    margin: 0 auto 2rem auto;
    position: relative;
    border-radius: 12px;
    padding: 5px;
    background: linear-gradient(45deg, #d4af37, #333, #d4af37);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.promo-video {
    width: 100%;
    border-radius: 8px;
    display: block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    max-height: 60vh; /* Prevent it from being too tall on large screens */
    object-fit: cover;
}

.cta-group {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Casino Background Animation */
.casino-bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Changed from -1 to 0 to be visible over body background */
    overflow: hidden;
    pointer-events: none;
}

.casino-bg-animation span {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    font-size: 20px;
    color: var(--primary-color);
    opacity: 0.1;
    bottom: -150px;
    animation: casinoFloat 15s linear infinite;
}

.casino-bg-animation span:nth-child(even) {
    color: var(--accent-color);
}

@keyframes casinoFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.2; }
    90% { opacity: 0.2; }
    100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

.casino-bg-animation span:nth-child(1) { left: 10%; animation-delay: 0s; font-size: 30px; }
.casino-bg-animation span:nth-child(2) { left: 20%; animation-delay: 4s; font-size: 24px; }
.casino-bg-animation span:nth-child(3) { left: 35%; animation-delay: 2s; font-size: 40px; }
.casino-bg-animation span:nth-child(4) { left: 50%; animation-delay: 8s; font-size: 28px; }
.casino-bg-animation span:nth-child(5) { left: 65%; animation-delay: 6s; font-size: 35px; }
.casino-bg-animation span:nth-child(6) { left: 80%; animation-delay: 3s; font-size: 22px; }
.casino-bg-animation span:nth-child(7) { left: 90%; animation-delay: 9s; font-size: 45px; }
.casino-bg-animation span:nth-child(8) { left: 5%; animation-delay: 11s; font-size: 26px; }
.casino-bg-animation span:nth-child(9) { left: 15%; animation-delay: 5s; font-size: 32px; }
.casino-bg-animation span:nth-child(10) { left: 45%; animation-delay: 1s; font-size: 38px; }
.casino-bg-animation span:nth-child(11) { left: 75%; animation-delay: 7s; font-size: 25px; }
.casino-bg-animation span:nth-child(12) { left: 55%; animation-delay: 10s; font-size: 30px; }
.casino-bg-animation span:nth-child(13) { left: 25%; animation-delay: 12s; font-size: 28px; }
.casino-bg-animation span:nth-child(14) { left: 85%; animation-delay: 13s; font-size: 42px; }
.casino-bg-animation span:nth-child(15) { left: 30%; animation-delay: 14s; font-size: 36px; }
.casino-bg-animation span:nth-child(16) { left: 60%; animation-delay: 15s; font-size: 24px; }
