

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #031149;
    --primary-dark: #183191;
    --secondary: #0e6cc7;
    --dark: #0a0a0f;
    --accent: #e1b70c;
    --dark-light: #1a1a24;
    --dark-lighter: #2a2a3a;
    --text: #ffffff;
    --text-gray: #b0b0c0;
    --gradient-1: linear-gradient(135deg, #183191 0%, #031149 100%);
    --gradient-2: linear-gradient(135deg, #031149 0%, #183191 100%);
    --gradient-3: linear-gradient(135deg, #ff0080 0%, #ff8c00 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
    background-clip: text;
}

.pascal-yellow {
    background: #fc9800;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link:hover {
    color: var(--primary);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(65, 105, 225, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(30, 144, 255, 0.15) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, var(--dark) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(65, 105, 225, 0.15);
    border: 1px solid rgba(65, 105, 225, 0.4);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.title-main {
    display: block;
    color: var(--text);
}

.title-accent {
    display: block;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-1);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(65, 105, 225, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-icon-arrow {
    width: 18px;
    height: 18px;
}

/* Images de fond défilantes */
.bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: imageSlideshow 15s infinite;
}

.bg-1 {
    background-image: url("./assets/imagetwo.jpg");
    animation-delay: 0s;
}

.bg-2 {
    background-image: url("./assets/imagethree.jpg");
    animation-delay: 5s;
}

.bg-3 {
    background-image: url("./assets/imageOne.jpg");
    animation-delay: 10s;
}

@keyframes imageSlideshow {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    6.66% {
        opacity: 0.3;
        transform: scale(1.05);
    }
    33.33% {
        opacity: 0.3;
        transform: scale(1.1);
    }
    40% {
        opacity: 0;
        transform: scale(1.15);
    }
    100% {
        opacity: 0;
        transform: scale(1.15);
    }
}

/* ===================================
   HERO BOOKMAKERS (REMPLACE STATS)
   =================================== */
.hero-bookmakers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 1s backwards;
}

.hero-bookmaker-card {
    position: relative;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.hero-bookmaker-card:hover {
    transform: translateY(-5px);
    border-color: rgba(65, 105, 225, 0.5);
    box-shadow: 0 15px 40px rgba(65, 105, 225, 0.3);
}

.hero-bookmaker-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-1);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(65, 105, 225, 0.5);
    white-space: nowrap;
}

.hero-bookmaker-name {
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.hero-bookmaker-bonus {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.hero-bookmaker-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: var(--gradient-1);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hero-bookmaker-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.5);
}

.bookmaker-arrow {
    width: 16px;
    height: 16px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 14px;
    animation: bounce 2s infinite;
}

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

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
}

/* ===================================
   COMMUNITY SECTION
   =================================== */
.community {
    padding: 100px 20px;
    background: var(--dark);
}

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

.community-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.community-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.community-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    color: var(--text-gray);
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: var(--gradient-1);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(65, 105, 225, 0.6);
}

.cta-icon {
    width: 24px;
    height: 24px;
}

.community-visual {
    position: relative;
}

.prono-cards {
    position: relative;
    height: 500px;
}

.prono-card {
    position: absolute;
    width: 300px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
}

.prono-card.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.prono-card.card-2 {
    top: 150px;
    right: 0;
    animation-delay: 2s;
}

.prono-card.card-3 {
    bottom: 0;
    left: 50px;
    animation-delay: 4s;
}

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

.prono-header {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.prono-match {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.prono-tip {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.prono-odd {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: 60px 20px 30px;
    background: var(--dark-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--text-gray);
    font-size: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-disclaimer {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    font-size: 14px;
}

.footer-disclaimer p {
    margin-bottom: 10px;
}

.footer-copyright {
    opacity: 0.6;
}

/* ===================================
   SECTIONS COMMON STYLES
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 15px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
    padding: 100px 20px;
    background: var(--dark-light);
}

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

.feature-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(65, 105, 225, 0.4);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

.feature-text {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===================================
   STATS SECTION
   =================================== */
.stats {
    padding: 100px 20px;
    background: var(--dark-light);
}

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

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(65, 105, 225, 0.4);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.stat-value {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-gray);
    font-size: 16px;
}

.bookmaker-logo {
    width: 120px;
    height: 70px;
    display: block;
    margin: 0 auto 10px auto;
    object-fit: contain;
}
/* Code Promo Banner */
.promo-code-banner {
    background: var(--primary);
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.promo-code-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.promo-icon {
    font-size: 3rem;
    animation: bouncePromo 2s infinite;
    z-index: 1;
}

@keyframes bouncePromo {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-10px) rotate(5deg); }
}

.promo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1;
}

.promo-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-code {
    color: #FFD700;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 8px;
    /*font-family: 'Courier New', monospace;*/

    position: relative;
    display: inline-block;
}
.animation{
    text-shadow:
            0 0 10px rgba(255, 215, 0, 0.8),
            0 0 20px rgba(255, 215, 0, 0.6),
            0 0 30px rgba(255, 215, 0, 0.4),
            2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: glowBlink 1.5s ease-in-out infinite;

}
@keyframes glowBlink {
    0%, 100% {
        color: #FFD700;
        text-shadow:
                0 0 10px rgba(255, 215, 0, 0.8),
                0 0 20px rgba(255, 215, 0, 0.6),
                0 0 30px rgba(255, 215, 0, 0.4),
                2px 2px 4px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
    50% {
        color: #FFF;
        text-shadow:
                0 0 20px rgba(255, 255, 255, 1),
                0 0 30px rgba(255, 215, 0, 0.8),
                0 0 40px rgba(255, 215, 0, 0.6),
                0 0 50px rgba(255, 215, 0, 0.4),
                2px 2px 4px rgba(0, 0, 0, 0.3);
        transform: scale(1.05);
    }
}

.promo-copy-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.promo-copy-btn:active {
    transform: translateY(0);
}

.promo-copy-btn.copied {
    background: rgba(76, 175, 80, 0.9);
    border-color: rgba(76, 175, 80, 1);
}
@media (max-width: 768px) {
    .promo-code-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        border-radius: 12px;
    }

    .promo-icon {
        display: none;
    }

    .promo-copy-btn {
        display: none;
    }

    .promo-content {
        align-items: center;
        gap: 8px;
    }

    .promo-label {
        font-size: 0.85rem;
    }

    .promo-code {
        font-size: 2rem;
        letter-spacing: 4px;
    }
}




/* WhatsApp Buttons */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp.deposit {
    background: linear-gradient(135deg, #25D366 0%, #1ea952 100%);
}

.btn-whatsapp.channel {
    background: linear-gradient(135deg, #128C7E 0%, #0d6e62 100%);
}

.btn-whatsapp .btn-icon {
    width: 24px;
    height: 24px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-bookmakers {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .community-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .community-visual {
        display: none;
    }

    .footer-links {
        gap: 15px;
    }

    .promo-code-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .promo-code {
        font-size: 1.4rem;
    }

    .btn-whatsapp,
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-bookmaker-card {
        padding: 20px 15px;
    }

    .hero-bookmaker-name {
        font-size: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .bookmaker-card {
        padding: 30px 20px;
    }
}





