/* ===== VARIABLES ===== */
:root {
    --primary: #FFD700;
    --secondary: #1E90FF;
    --dark: #0a0a15;
    --light: #ffffff;
    --accent: #FF6B35;
    --success: #00c853;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Karantina', sans-serif;
    background: var(--dark);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    background-image: url('ez4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 60px 20px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('ez1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(10, 10, 21, 0.4), 
        rgba(30, 144, 255, 0.2), 
        rgba(10, 10, 21, 0.5));
}

.hero .container {
    position: relative;
    z-index: 10;
}

.agent-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.crown-icon {
    font-size: 1.8rem;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-title {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 
        0 0 40px rgba(255, 255, 255, 0.8),
        0 0 60px rgba(255, 255, 255, 0.6),
        0 0 80px rgba(255, 255, 255, 0.4),
        0 5px 20px rgba(0, 0, 0, 0.5);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow: 
            0 0 40px rgba(255, 255, 255, 0.8),
            0 0 60px rgba(255, 255, 255, 0.6),
            0 0 80px rgba(255, 255, 255, 0.4),
            0 5px 20px rgba(0, 0, 0, 0.5);
    }
    100% {
        text-shadow: 
            0 0 60px rgba(255, 255, 255, 1),
            0 0 80px rgba(255, 255, 255, 0.8),
            0 0 100px rgba(255, 255, 255, 0.6),
            0 5px 20px rgba(0, 0, 0, 0.5);
    }
}

.hero-title-line {
    display: inline-block;
    padding: 10px 30px;
    margin: 5px 0;
    background: rgba(0, 0, 0, 0.6);
    border: 3px solid rgba(255, 215, 0, 0.6);
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(255, 215, 0, 0.4),
        inset 0 0 30px rgba(255, 215, 0, 0.1);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.6),
        0 0 50px rgba(255, 255, 255, 0.4),
        0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-subtitle-box {
    display: inline-block;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: clamp(1.4rem, 4vw, 1.9rem);
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 600;
}

.hero-feature-box {
    display: inline-block;
    padding: 12px 25px;
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-feature-box:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.hero-separator {
    color: rgba(255, 215, 0, 0.5);
}

.hero-games {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: clamp(1.5rem, 4.5vw, 2.1rem);
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-game-box {
    display: inline-block;
    padding: 12px 25px;
    background: rgba(30, 144, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(30, 144, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-game-box:hover {
    transform: translateY(-3px);
    border-color: rgba(30, 144, 255, 0.5);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
}

.hero-cta-text {
    font-size: clamp(1.7rem, 5vw, 2.4rem);
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-cta-box {
    display: inline-block;
    padding: 15px 35px;
    background: rgba(255, 107, 53, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    }
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 25px 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    font-size: clamp(2.2rem, 5.5vw, 3.2rem);
    font-weight: 900;
    border-radius: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 60px rgba(37, 211, 102, 0.8),
        0 0 100px rgba(37, 211, 102, 0.6),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 40px;
    animation: whatsappPulse 1.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.hero-cta:hover {
    transform: translateY(-8px) scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 25px 80px rgba(37, 211, 102, 1),
        0 0 120px rgba(37, 211, 102, 0.8),
        inset 0 0 40px rgba(255, 255, 255, 0.3);
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 20px 60px rgba(37, 211, 102, 0.8),
            0 0 100px rgba(37, 211, 102, 0.6),
            inset 0 0 30px rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 25px 80px rgba(37, 211, 102, 1),
            0 0 120px rgba(37, 211, 102, 0.8),
            inset 0 0 40px rgba(255, 255, 255, 0.3);
    }
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.point {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    font-weight: 600;
    font-size: clamp(1.4rem, 4vw, 1.7rem);
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 35px rgba(255, 255, 255, 0.2);
}

/* ===== PROMO SLIDERS SECTION ===== */
.promo-sliders-section {
    padding: 60px 0;
    background-image: url('ez2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.promo-sliders-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 21, 0.5);
    z-index: 0;
}

.promo-sliders-section .container {
    max-width: 100%;
    padding: 0;
    overflow: visible;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.promoSwiper1,
.promoSwiper2 {
    width: 100%;
    padding: 20px 0;
}

.promoSwiper1 .swiper-slide,
.promoSwiper2 .swiper-slide {
    width: auto;
}

.promoSwiper1 .swiper-wrapper,
.promoSwiper2 .swiper-wrapper {
    transition-timing-function: linear;
}

.promo-box {
    flex-shrink: 0;
    width: 380px;
    height: 250px;
    padding: 15px;
    background: #000000;
    border-radius: 20px;
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.promo-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.promo-box:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(255, 215, 0, 0.4),
        0 0 60px rgba(30, 144, 255, 0.3);
}

.promo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.1) drop-shadow(0 4px 15px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
}

.promo-box:hover img {
    filter: brightness(1.3) drop-shadow(0 6px 20px rgba(255, 215, 0, 0.5));
}

/* Responsive */
@media (max-width: 768px) {
    .promo-sliders-section {
        padding: 40px 0;
    }
    
    .promo-sliders-section .container {
        gap: 30px;
    }
    
    .promo-box {
        width: 300px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .promo-sliders-section {
        padding: 30px 0;
    }
    
    .promo-sliders-section .container {
        gap: 25px;
    }
    
    .promo-box {
        width: 240px;
        height: 160px;
        padding: 10px;
    }
}

/* ===== PARTNERS SECTION ===== */
.partners {
    padding: 40px 0;
    background-image: url('ez4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.partners::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 21, 0.5);
    z-index: 0;
}

.partners .container {
    max-width: 100%;
    padding: 0;
    overflow: visible;
}

.partnersSwiper {
    width: 100%;
    padding: 20px 0;
}

.partnersSwiper .swiper-slide {
    width: auto;
}

.partnersSwiper .swiper-wrapper {
    transition-timing-function: linear;
}

.partner-logo-box {
    flex-shrink: 0;
    width: 220px;
    height: 120px;
    padding: 20px;
    background: #000000;
    border-radius: 20px;
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.partner-logo-box.white-bg {
    background: white;
}

.partner-logo-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.partner-logo-box:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(255, 215, 0, 0.4),
        0 0 60px rgba(30, 144, 255, 0.3);
}

.partner-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.1) drop-shadow(0 4px 15px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
}

.partner-logo-box:hover img {
    filter: brightness(1.3) drop-shadow(0 6px 20px rgba(255, 215, 0, 0.5));
}

/* ===== WINS SECTION ===== */
.casino {
    padding: 80px 20px;
    background-image: url('ez2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.casino::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 21, 0.5), rgba(30, 144, 255, 0.2));
}

.casino .container {
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: clamp(3.5rem, 10vw, 5.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1.5rem, 4.5vw, 2rem);
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 
        0 0 25px rgba(255, 255, 255, 0.5),
        0 0 40px rgba(255, 255, 255, 0.3);
}

.wins-info {
    text-align: center;
    font-size: clamp(1.2rem, 4vw, 1.7rem);
    margin-bottom: 40px;
    color: var(--primary);
    font-weight: 600;
}

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

.win-card {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(30, 144, 255, 0.1));
    border-radius: 20px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.win-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

.win-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 20px;
    background: var(--success);
    color: white;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.4);
}

.win-placeholder {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.wins-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    width: fit-content;
}

.wins-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.7);
}

/* ===== CASINO SECTION ===== */
.casino {
    padding: 80px 20px;
    background: var(--dark);
    text-align: center;
}

.icon-large {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.section-text {
    font-size: clamp(1.5rem, 4.5vw, 2rem);
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 
        0 0 25px rgba(255, 255, 255, 0.5),
        0 0 40px rgba(255, 255, 255, 0.3);
}

.games-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    margin: 30px 0;
}

.bonus-badge {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50px;
    margin: 30px 0;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
}

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

.feature-box {
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(30, 144, 255, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 2.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.feature-box p {
    font-size: 1.5rem;
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 35px rgba(255, 255, 255, 0.2);
}

/* ===== POKER SECTION ===== */
.poker {
    padding: 80px 20px;
    background-image: url('ez3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
}

.poker::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 21, 0.5), rgba(255, 107, 53, 0.2));
}

.poker .container {
    position: relative;
    z-index: 10;
}

.poker-symbols {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 20px;
}

.poker-brand {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    margin: 30px 0;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.poker-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
    text-align: right;
}

.poker-col h3 {
    font-size: 2.1rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.poker-col ul {
    list-style: none;
    font-size: 1.6rem;
}

.poker-col li {
    padding: 10px 0;
    padding-right: 25px;
    position: relative;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 35px rgba(255, 255, 255, 0.2);
}

.poker-col li::before {
    content: '♠';
    position: absolute;
    right: 0;
    color: var(--primary);
}

.poker-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.poker-option {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.poker-option h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.poker-option p {
    font-size: 1.1rem;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.3),
        0 0 25px rgba(255, 255, 255, 0.2);
}

.section-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 900;
    border-radius: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 50px rgba(37, 211, 102, 0.7),
        0 0 80px rgba(37, 211, 102, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin-top: 30px;
    animation: whatsappPulse 1.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

.section-cta:hover {
    transform: translateY(-8px) scale(1.08);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 20px 60px rgba(37, 211, 102, 0.9),
        0 0 100px rgba(37, 211, 102, 0.7),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
}

/* ===== SPORTS SECTION ===== */
.sports {
    padding: 80px 20px;
    background-image: url('sport.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
}

.sports::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 21, 0.6);
}

.sports .container {
    position: relative;
    z-index: 1;
}

.sports-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin: 30px 0;
}

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

.sport-feature {
    padding: 30px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.05), rgba(255, 107, 53, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(30, 144, 255, 0.3);
    transition: all 0.3s ease;
}

.sport-feature:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(30, 144, 255, 0.4);
}

.sport-feature h3 {
    font-size: 1.6rem;
    margin: 15px 0 10px;
    color: var(--secondary);
}

/* ===== BONUSES SECTION ===== */
.bonuses {
    padding: 80px 20px;
    background-image: url('ez3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
}

.bonuses::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 21, 0.5), rgba(30, 144, 255, 0.2));
}

.bonuses .container {
    position: relative;
    z-index: 1;
}

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

.bonus-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
}

.bonus-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.bonus-card h3 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.bonus-card p {
    font-size: 1.5rem;
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 35px rgba(255, 255, 255, 0.2);
}

/* ===== WHY SECTION ===== */
.why {
    padding: 80px 20px;
    background-image: url('ez4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
}

.why::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 21, 0.6);
}

.why .container {
    position: relative;
    z-index: 1;
}

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

.why-card {
    padding: 30px 25px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(30, 144, 255, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 2.1rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.why-card p {
    font-size: 1.5rem;
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 35px rgba(255, 255, 255, 0.2);
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    padding: 100px 20px;
    background-image: url('ez4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.3), rgba(255, 107, 53, 0.3));
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.cta-logo {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
}

.cta-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-text {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 
        0 0 25px rgba(255, 255, 255, 0.5),
        0 0 40px rgba(255, 255, 255, 0.3);
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 25px 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 900;
    border-radius: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 60px rgba(37, 211, 102, 0.8),
        0 0 100px rgba(37, 211, 102, 0.6),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: whatsappPulse 1.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.final-cta-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

.final-cta-btn:hover {
    transform: translateY(-8px) scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 25px 80px rgba(37, 211, 102, 1),
        0 0 120px rgba(37, 211, 102, 0.8),
        inset 0 0 40px rgba(255, 255, 255, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    padding: 50px 20px;
    background: var(--dark);
    text-align: center;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
}

.footer-agent {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 35px rgba(255, 255, 255, 0.2);
}

.footer-disclaimer {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 900;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 50px rgba(37, 211, 102, 0.8),
        0 0 80px rgba(37, 211, 102, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: floatWhatsapp 2s ease-in-out infinite;
}

@keyframes floatWhatsapp {
    0%, 100% { 
        transform: translateY(0) scale(1);
        box-shadow: 
            0 15px 50px rgba(37, 211, 102, 0.8),
            0 0 80px rgba(37, 211, 102, 0.6),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% { 
        transform: translateY(-10px) scale(1.05);
        box-shadow: 
            0 20px 60px rgba(37, 211, 102, 1),
            0 0 100px rgba(37, 211, 102, 0.8),
            inset 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

.whatsapp-float:hover {
    transform: translateY(-8px) scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 20px 60px rgba(37, 211, 102, 1),
        0 0 100px rgba(37, 211, 102, 0.8),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
}

.whatsapp-float i {
    font-size: 2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        padding: 40px 15px;
    }
    
    .agent-badge {
        font-size: 1.1rem;
        padding: 10px 25px;
    }
    
    .hero-points {
        grid-template-columns: 1fr;
    }
    
    .partner-logo-box {
        width: 180px;
        height: 100px;
    }
    
    .partners .container {
        max-width: 100%;
        padding: 0;
    }
    
    .wins-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .casino-features,
    .sports-features,
    .bonuses-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .poker-features {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float span {
        display: none;
    }
    
    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .partner-logo-box {
        width: 150px;
        height: 85px;
        padding: 15px;
    }
    
    .partners .container {
        max-width: 100%;
        padding: 0;
    }
    
    .hero-cta,
    .final-cta-btn {
        padding: 15px 35px;
        font-size: 1.3rem;
    }
    
    .wins-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== WHATSAPP POPUP ===== */
.whatsapp-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.whatsapp-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.whatsapp-popup {
    background: linear-gradient(135deg, rgba(10, 10, 21, 0.95), rgba(30, 30, 45, 0.95));
    border: 4px solid rgba(37, 211, 102, 0.6);
    border-radius: 30px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 
        0 30px 80px rgba(37, 211, 102, 0.4),
        0 0 100px rgba(37, 211, 102, 0.3),
        inset 0 0 50px rgba(37, 211, 102, 0.1);
    animation: popupSlideIn 0.5s ease-out;
    transform: scale(1);
}

@keyframes popupSlideIn {
    0% {
        transform: scale(0.8) translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.popup-icon {
    font-size: 6rem;
    color: #25D366;
    margin-bottom: 20px;
    animation: popupIconBounce 1s ease-in-out infinite;
}

@keyframes popupIconBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.popup-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.popup-text {
    font-size: clamp(1.3rem, 4vw, 1.7rem);
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 
        0 0 25px rgba(255, 255, 255, 0.5),
        0 0 40px rgba(255, 255, 255, 0.3);
}

.popup-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 50px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 900;
    border-radius: 60px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 50px rgba(37, 211, 102, 0.7),
        0 0 80px rgba(37, 211, 102, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 25px;
    animation: whatsappPulse 1.5s ease-in-out infinite;
}

.popup-cta:hover {
    transform: translateY(-5px) scale(1.08);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 20px 60px rgba(37, 211, 102, 0.9),
        0 0 100px rgba(37, 211, 102, 0.7),
        inset 0 0 40px rgba(255, 255, 255, 0.3);
}

.popup-cta i {
    font-size: 2rem;
}

.popup-footer {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}

@media (max-width: 768px) {
    .whatsapp-popup {
        padding: 40px 30px;
    }
    
    .popup-icon {
        font-size: 5rem;
    }
    
    .popup-cta {
        padding: 18px 40px;
        font-size: 1.4rem;
    }
}

