:root {
    --vip-black: #050505;
    --vip-charcoal: #121212;
    --vip-gold: #ffd700;
    --vip-gold-dim: #b39700;
    --vip-silver: #e0e0e0;
    --vip-accent: #00ff00;
    /* Toxic Green for Action */

    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--vip-black);
    color: var(--vip-silver);
    font-family: var(--font-main);
    overflow-x: hidden;
}

/* HEADER */
.vip-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    /* Centered Logo */
    align-items: center;
    padding: 0 20px;
    z-index: 100;
}

.logo-img {
    height: 30px;
}

.btn-top-login {
    background: transparent;
    border: 1px solid var(--vip-gold);
    color: var(--vip-gold);
    padding: 5px 15px;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-top-login:hover {
    background: var(--vip-gold);
    color: black;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* HERO SLIDER */
.hero-slider {
    position: relative;
    width: 100%;
    height: 45vh;
    /* Reduced to 45vh base */
    overflow: hidden;
    margin-top: 60px;
    /* Header offset */
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-out;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Center the focus */
}

.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--vip-black), transparent);
    pointer-events: none;
}

/* ACTION ZONE */
.action-zone {
    text-align: center;
    padding: 30px 15px;
    /* Tighter padding on mobile side */
    background: var(--vip-black);
    position: relative;
    z-index: 10;
    margin-top: -20px;
    /* Overlap slider slightly */
    border-radius: 20px 20px 0 0;
    /* Rounded top */
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.main-title {
    font-size: 2.2rem;
    /* Big impact */
    font-weight: 900;
    line-height: 1;
    color: white;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.gold-text {
    color: var(--vip-gold);
    display: block;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.subtitle {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

/* VIP Button */
.btn-whatsapp-vip {
    display: block;
    background: linear-gradient(135deg, #1c1c1c, #0a0a0a);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 15px;
    /* Less padding */
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.btn-whatsapp-vip:active {
    transform: scale(0.98);
}

.btn-whatsapp-vip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--vip-accent);
    /* Green Bar */
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 2;
    position: relative;
}

.vip-wa-icon {
    width: 40px;
    filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.5));
}

.btn-text {
    text-align: left;
}

.small-label {
    display: block;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.big-label {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    color: white;
    letter-spacing: 0.5px;
}

/* Glitch Effect on Hover */
.btn-glitch:hover .big-label {
    color: var(--vip-accent);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* APP ZONE */
.app-zone {
    background: #121212;
    padding: 40px 20px;
    margin: 20px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    text-align: center;
}

.app-card {
    background: radial-gradient(circle at center, #2a2a2a, #1a1a1a);
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid #333;
    position: relative;
}

.app-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--vip-gold);
    color: black;
    font-weight: 900;
    padding: 5px 15px;
    font-size: 0.8rem;
    border-radius: 20px;
    box-shadow: 0 0 10px var(--vip-gold);
}

.app-card h2 {
    color: white;
    font-size: 1.2rem;
    margin-top: 10px;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--vip-accent);
    margin: 10px 0;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
}

.app-card p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 20px;
}

.btn-download-outline {
    display: inline-block;
    border: 2px solid var(--vip-gold);
    color: var(--vip-gold);
    text-decoration: none;
    padding: 10px 25px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-download-outline:hover {
    background: var(--vip-gold);
    color: black;
    box-shadow: 0 0 20px var(--vip-gold-dim);
}

/* GAMES GRID / STRIP */
.games-zone {
    padding-bottom: 40px;
    overflow: hidden;
}

.scrolling-text {
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 20px;
    opacity: 0.5;
}

.scrolling-text span {
    display: inline-block;
    font-size: 3rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px #444;
    animation: scrollText 20s linear infinite;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.games-visual {
    width: 100%;
    padding: 0 20px;
}

.games-full-img {
    width: 100%;
    border-radius: 10px;
    opacity: 0.8;
    border: 1px solid #333;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.7rem;
    color: #444;
    border-top: 1px solid #111;
}

@media (max-width: 480px) {
    .vip-header {
        height: 50px;
        padding: 0 15px;
    }

    .hero-slider {
        margin-top: 50px;
        height: auto;
        aspect-ratio: 2 / 1;
        /* Adapts to width, better for banners */
    }

    .slide img {
        object-fit: contain;
        /* Shows full image without zooming/cropping */
        background: #000;
        /* Black background for any letterboxing */
    }

    .main-title {
        font-size: 1.8rem;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 800px;
    }

    .hero-slider {
        height: 60vh;
    }

    .main-title {
        font-size: 3.5rem;
    }
}