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

/*:root {*/
/*    --primary: #00ff88;*/
/*    --primary-dark: #00cc6a;*/
/*    --secondary: #0066ff;*/
/*    --dark: #0a0a0f;*/
/*    --dark-light: #1a1a24;*/
/*    --dark-lighter: #2a2a3a;*/
/*    --text: #ffffff;*/
/*    --text-gray: #b0b0c0;*/
/*    --gradient-1: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);*/
/*    --gradient-2: linear-gradient(135deg, #0066ff 0%, #00ff88 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 {*/
/*    font-size: 28px;*/
/*}*/

/*.logo-text {*/
/*    background: var(--gradient-1);*/
/*    -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(0, 102, 255, 0.1) 0%, transparent 50%),*/
/*    radial-gradient(circle at 80% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);*/
/*}*/

/*!* 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-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(0, 255, 136, 0.1);*/
/*    border: 1px solid rgba(0, 255, 136, 0.3);*/
/*    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: var(--dark);*/
/*    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);*/
/*}*/

/*.btn-primary:hover {*/
/*    transform: translateY(-3px);*/
/*    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);*/
/*}*/

/*.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;*/
/*}*/

/*.hero-stats {*/
/*    display: flex;*/
/*    gap: 40px;*/
/*    justify-content: center;*/
/*    flex-wrap: wrap;*/
/*    animation: fadeInUp 0.8s ease-out 1s backwards;*/
/*}*/

/*.stat-box {*/
/*    text-align: center;*/
/*    padding: 20px 30px;*/
/*    background: rgba(255, 255, 255, 0.03);*/
/*    border: 1px solid rgba(255, 255, 255, 0.05);*/
/*    border-radius: 12px;*/
/*    backdrop-filter: blur(10px);*/
/*}*/

/*.stat-number {*/
/*    font-size: 32px;*/
/*    font-weight: 900;*/
/*    background: var(--gradient-1);*/
/*    -webkit-background-clip: text;*/
/*    -webkit-text-fill-color: transparent;*/
/*    background-clip: text;*/
/*    display: block;*/
/*    margin-bottom: 5px;*/
/*}*/

/*.stat-label {*/
/*    font-size: 14px;*/
/*    color: var(--text-gray);*/
/*    font-weight: 500;*/
/*}*/

/*.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%);*/
/*}*/

/*!* ===================================*/
/*   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(0, 255, 136, 0.3);*/
/*    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;*/
/*}*/

/*!* ===================================*/
/*   BOOKMAKERS SECTION*/
/*   =================================== *!*/
/*.bookmakers {*/
/*    padding: 100px 20px;*/
/*    background: var(--dark);*/
/*}*/

/*.bookmakers-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));*/
/*    gap: 40px;*/
/*    margin-bottom: 40px;*/
/*}*/

/*.bookmaker-card {*/
/*    position: relative;*/
/*    padding: 40px;*/
/*    background: rgba(255, 255, 255, 0.03);*/
/*    border: 2px solid rgba(255, 255, 255, 0.05);*/
/*    border-radius: 24px;*/
/*    transition: all 0.4s ease;*/
/*}*/

/*.bookmaker-card:hover {*/
/*    transform: translateY(-10px);*/
/*    border-color: rgba(0, 255, 136, 0.3);*/
/*    box-shadow: var(--shadow-lg);*/
/*}*/

/*.bookmaker-badge {*/
/*    position: absolute;*/
/*    top: -15px;*/
/*    left: 30px;*/
/*    padding: 8px 20px;*/
/*    background: var(--gradient-1);*/
/*    color: var(--dark);*/
/*    font-size: 12px;*/
/*    font-weight: 800;*/
/*    border-radius: 50px;*/
/*    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);*/
/*}*/

/*.bookmaker-logo {*/
/*    margin-bottom: 30px;*/
/*}*/

/*.bookmaker-name {*/
/*    font-size: 36px;*/
/*    font-weight: 900;*/
/*    background: var(--gradient-1);*/
/*    -webkit-background-clip: text;*/
/*    -webkit-text-fill-color: transparent;*/
/*    background-clip: text;*/
/*}*/

/*.bookmaker-features {*/
/*    margin-bottom: 30px;*/
/*}*/

/*.bookmaker-feature {*/
/*    padding: 12px 0;*/
/*    color: var(--text-gray);*/
/*    font-size: 15px;*/
/*    border-bottom: 1px solid rgba(255, 255, 255, 0.05);*/
/*}*/

/*.bookmaker-feature:last-child {*/
/*    border-bottom: none;*/
/*}*/

/*.bookmaker-btn {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    gap: 10px;*/
/*    width: 100%;*/
/*    padding: 18px 30px;*/
/*    background: var(--gradient-1);*/
/*    color: var(--dark);*/
/*    text-decoration: none;*/
/*    font-weight: 700;*/
/*    font-size: 16px;*/
/*    border-radius: 12px;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.bookmaker-btn:hover {*/
/*    transform: translateY(-3px);*/
/*    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);*/
/*}*/

/*.btn-arrow {*/
/*    width: 20px;*/
/*    height: 20px;*/
/*}*/

/*.bookmakers-note {*/
/*    text-align: center;*/
/*    padding: 30px;*/
/*    background: rgba(0, 102, 255, 0.1);*/
/*    border: 1px solid rgba(0, 102, 255, 0.3);*/
/*    border-radius: 16px;*/
/*    color: var(--text-gray);*/
/*}*/

/*.bookmakers-note strong {*/
/*    color: var(--primary);*/
/*}*/

/*!* ===================================*/
/*   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(0, 255, 136, 0.3);*/
/*    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;*/
/*}*/

/*!* ===================================*/
/*   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: var(--dark);*/
/*    text-decoration: none;*/
/*    font-weight: 800;*/
/*    font-size: 18px;*/
/*    border-radius: 12px;*/
/*    transition: all 0.3s ease;*/
/*    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);*/
/*}*/

/*.cta-button:hover {*/
/*    transform: translateY(-5px);*/
/*    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.5);*/
/*}*/

/*.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;*/
/*}*/

/*!* ===================================*/
/*   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-stats {*/
/*        gap: 20px;*/
/*    }*/

/*    .stat-box {*/
/*        flex: 1;*/
/*        min-width: 100px;*/
/*    }*/

/*    .bookmakers-grid {*/
/*        grid-template-columns: 1fr;*/
/*    }*/

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

/*    .community-visual {*/
/*        display: none;*/
/*    }*/

/*    .footer-links {*/
/*        gap: 15px;*/
/*    }*/
/*}*/

/*@media (max-width: 480px) {*/
/*    .features-grid {*/
/*        grid-template-columns: 1fr;*/
/*    }*/

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

/*    .bookmaker-card {*/
/*        padding: 30px 20px;*/
/*    }*/
/*}*/
/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00ff88;
    --primary-dark: #00cc6a;
    --secondary: #0066ff;
    --dark: #0a0a0f;
    --dark-light: #1a1a24;
    --dark-lighter: #2a2a3a;
    --text: #ffffff;
    --text-gray: #b0b0c0;
    --gradient-1: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    --gradient-2: linear-gradient(135deg, #0066ff 0%, #00ff88 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 {
    font-size: 28px;
}

.logo-text {
    background: var(--gradient-1);
    -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(0, 102, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 255, 136, 0.1) 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(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    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: var(--dark);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.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;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
}

/* 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-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, var(--dark) 100%);
}


/* ===================================
   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(0, 255, 136, 0.4);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

.hero-bookmaker-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-1);
    color: var(--dark);
    font-size: 11px;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
    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: var(--dark);
    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(0, 255, 136, 0.4);
}

.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%);
}

/* ===================================
   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;
    }
}

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

    .hero-bookmaker-name {
        font-size: 24px;
    }
}
/* ===================================
   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: var(--dark);
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.5);
}

.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;
}

/* ===================================
   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-stats {
        gap: 20px;
    }

    .stat-box {
        flex: 1;
        min-width: 100px;
    }

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

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

    .community-visual {
        display: none;
    }

    .footer-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .bookmaker-card {
        padding: 30px 20px;
    }
}
@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%);
}

/* ===================================
   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(0, 255, 136, 0.3);
    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(0, 255, 136, 0.3);
    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;
}
