/* Base Styles */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

header {
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

:root {
    --primary-color: #070b34; /* Darker blue */
    --secondary-color: #ffcc00; /* Bright yellow */
    --accent-color: #ff6b00; /* Orange */
    --dark-color: #000033; /* Very dark blue */
    --light-color: #ffffff; /* White */
    --success-color: #38b000; /* Green */
    --warning-color: #ffbe0b; /* Yellow */
    --gray-color: #8d99ae; /* Gray */
    --text-color: #ffffff; /* White text */
    --gradient-primary: linear-gradient(135deg, #070b34 0%, #0a1172 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b00 0%, #ffcc00 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.18), 0 3px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.25), 0 8px 20px rgba(0, 0, 0, 0.15);
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-normal: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-radius-sm: 6px;
    --border-radius-md: 10px;
    --border-radius-lg: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
    background-image: url('https://chocobonplan.com/wp-content/uploads/2024/09/efootball-2025-news-slider.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 17, 114, 0.8);
    z-index: -1;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

button {
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    border: none;
    outline: none;
}

section {
    padding: 50px 0;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--light-color);
    font-weight: 700;
    text-transform: uppercase;
}

h2 .highlight {
    color: var(--secondary-color);
}

/* Custom styling for offers section heading with dynamic effects */
@keyframes glow {
    0% { text-shadow: 0 0 5px rgba(255, 193, 7, 0.5); }
    50% { text-shadow: 0 0 20px rgba(255, 193, 7, 0.8), 0 0 30px rgba(255, 193, 7, 0.5); }
    100% { text-shadow: 0 0 5px rgba(255, 193, 7, 0.5); }
}

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

.offers h2 {
    color: var(--secondary-color); /* Yellow color */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    animation: glow 3s infinite;
    position: relative;
    display: inline-block;
    margin: 0 auto 1.5rem;
}

.offers h2 .highlight {
    color: var(--secondary-color);
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.offers h2 .highlight:hover {
    animation: bounce 0.5s ease;
}

section > p {
    text-align: center;
    color: var(--light-color);
    margin-bottom: 3rem;
    font-size: 1rem;
}

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

/* Custom styling for offers section subtitle */
.offers > p {
    color: #000000; /* Black color */
    font-weight: 500;
}

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

/* Header & Navigation */
header {
    background-color: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid rgba(255, 193, 7, 0.2);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    background-color: var(--dark-color);
    color: var(--light-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.exclusive-offer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background-color: #FFA500;
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
    color: #000066;
    font-weight: 600;
}

.countdown span:first-child {
    font-weight: 700;
}

.social-follow {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    border-left: 3px solid var(--secondary-color);
}

.social-follow span {
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.platform-icon {
    color: var(--light-color);
    font-size: 0.9rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    color: var(--dark-color);
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 2rem;
}

.logo h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    position: relative;
    padding-bottom: 5px;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 33%;
}

.nav-container {
    width: 100%;
    position: relative;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-left {
    justify-content: flex-start;
}

.balls-counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    background-color: #FF9900;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    border: 1px solid #FF9900;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.balls-counter i {
    font-size: 1.2rem;
    color: white;
    margin-right: 0.2rem;
}

.get-balls-btn {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: 2px solid var(--secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    transition: var(--transition-fast);
    cursor: pointer;
    position: relative;
}

.get-balls-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--secondary-color);
    transition: var(--transition-normal);
    z-index: -1;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.claim-now-btn {
    background: var(--gradient-accent);
    color: var(--dark-color);
    padding: 0.9rem 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transform: translateY(0);
}

.claim-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-normal);
    z-index: -1;
}

.claim-now-btn:hover {
    background-color: #e6ac00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.claim-now-btn:hover::before {
    left: 100%;
}

.get-balls-btn:hover {
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.get-balls-btn:hover::before {
    width: 100%;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 5%;
    background: var(--primary-color) url('../images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    min-height: 500px;
    position: relative;
}

.hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 114, 0.7);
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero h1 span {
    display: block;
}

.hero h1 .highlight {
    color: var(--secondary-color);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light-color);
    max-width: 90%;
}

.claim-now-btn {
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.claim-now-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    z-index: -1;
}

.claim-now-btn:hover:before {
    left: 0;
}

/* Top Bar */
.top-bar {
    background-color: #000066;
    color: var(--light-color);
    padding: 0.8rem 0;
    font-size: 0.9rem;
    border-bottom: 3px solid #FF9900;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.exclusive-offer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.social-follow {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icons a {
    color: var(--light-color);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

/* Stats Section */
.stats {
    background-color: var(--primary-color);
    padding: 30px 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.stat-card {
    text-align: center;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.stat-card p {
    color: var(--light-color);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Offers Section */
.offers {
    padding: 60px 5%;
    background-color: white;
}

.offers-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
}

.offer-card {
    background: white;
    border: 2px solid var(--primary-color);
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 1rem;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.offer-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid var(--primary-color);
}

.offer-card h3 {
    padding: 1.2rem 1rem 0.5rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
    position: relative;
    margin-bottom: 0.5rem;
}

.offer-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.offer-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 193, 7, 0.3);
}

.offer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.offer-card:hover::after {
    transform: scaleX(1);
}

.offer-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.offer-card h3 {
    padding: 1.2rem 1rem 0.5rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
    position: relative;
    margin-bottom: 0.5rem;
}

.offer-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.offer-card p {
    padding: 0 1rem;
    color: #333;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
}

.read-more {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    margin: 0 auto 1rem;
    text-align: center;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
}

.read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.read-more:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 17, 114, 0.3);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Contact Section */
.contact {
    padding: 40px 5%;
    background-color: var(--primary-color);
}

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

.contact h2 {
    margin-bottom: 1.5rem;
    color: var(--light-color);
    font-weight: 700;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    font-weight: 600;
    transition: background 0.3s;
}

.newsletter-form button i {
    margin-left: 0.5rem;
}

.newsletter-form button:hover {
    background: #e6ac00;
}

/* Platforms Section */
.platforms {
    padding: 20px 5%;
    background-color: var(--dark-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.platforms-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* Bannière exclusive */
.exclusive-banner {
    background-color: #000066;
    padding: 0.3rem 0;
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.exclusive-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    max-width: 1200px;
}



.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-links {
display: flex;
justify-content: center;
flex: 1;
margin: 0 20px;
}

.nav-links ul {
display: flex;
list-style: none;
gap: 2.5rem;
margin: 0;
padding: 0;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-links ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links ul li a:hover {
    color: var(--secondary-color);
}

.nav-links ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links ul li a:hover::after {
    width: 100%;
}

.nav-right {
    margin-right: 2rem;
}



.platform-icon {
    color: var(--light-color);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.platform-icon i {
    font-size: 1.2rem;
}

/* Coin Packages Section */
.coin-packages {
    padding: 80px 5%;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.coin-packages h2 {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.error-notification {
    background-color: #ff3333;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(255, 51, 51, 0.3);
    max-width: 500px;
    margin: 0 auto 20px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    pointer-events: none;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 10;
}

.error-notification.active {
    opacity: 1;
    transform: translateY(0);
}

.error-notification i {
    font-size: 1.2rem;
}

.packages-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.package-card {
    background: linear-gradient(145deg, rgba(0, 0, 51, 0.9) 0%, rgba(7, 11, 52, 0.9) 100%);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: block;
    text-decoration: none;
    color: var(--light-color);
    cursor: pointer;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    z-index: 1;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1) 0%, rgba(255, 107, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 204, 0, 0.3);
}

.package-card:hover::before {
    opacity: 1;
}

.package-card h3 {
    color: var(--light-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.coin-image {
    margin: 1rem 0;
}

.coin-image img {
    max-width: 80px;
    margin: 0 auto;
}

.package-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.package-tag {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.3rem 0.8rem;
    display: inline-block;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.package-card p {
    color: var(--light-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 80px 5%;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding-top: 50px;
}

.footer-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 5% 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    flex: 0 0 25%;
}

.footer-logo h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.footer-logo h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.footer-sections {
    flex: 0 0 50%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-right {
    flex: 0 0 25%;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: flex-end;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-form {
    display: flex;
    margin-top: 1rem;
}

.footer-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    font-family: 'Poppins', sans-serif;
}

.footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-form button {
    padding: 0.8rem 1rem;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border: none;
}

.footer-bottom {
    padding: 1.5rem 5%;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Footer Styles */
@media (max-width: 992px) {
    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-logo, .footer-sections, .footer-right {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .footer-logo {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-logo h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-info p i {
    color: var(--secondary-color);
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background-color: var(--primary-color);
    position: relative;
}

.stats h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.stat-card {
    background-color: var(--dark-color);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 193, 7, 0.3);
}

.stat-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--light-color);
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Styles */
/* Offers Section */
.offers {
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.offers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 17, 114, 0.9) 0%, rgba(0, 0, 102, 0.9) 100%);
    z-index: -1;
}

.offers-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    justify-content: center;
}

/* Pour les tablettes et écrans moyens (1024px et moins) */
@media (max-width: 1024px) {
    .packages-container,
    .offers-container,
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        max-width: 90%;
        padding: 0 20px;
    }
    
    .platforms-container {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .platform-icon {
        font-size: 0.9rem;
        margin: 0.5rem;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .logo h1 {
        font-size: 2.4rem;
    }
    
    .nav-links ul {
        gap: 1.2rem;
    }
    
    .nav-links ul li a {
        font-size: 0.9rem;
    }
    
    .balls-counter {
        font-size: 1.2rem;
        padding: 0.6rem 1.2rem;
    }
    
    .balls-counter i {
        font-size: 1.5rem;
    }
    
    .social-follow span {
        display: none;
    }
}

/* Pour les téléphones mobiles (768px et moins) */
@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    nav {
        padding: 1rem 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .balls-counter {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .balls-counter i {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 60px 5%;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .claim-now-btn, .get-balls-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-logo, .footer-sections, .footer-right {
        width: 100%;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Amélioration des formulaires pour mobile */
    .footer-form {
        display: flex;
        width: 100%;
    }
    
    .footer-form input {
        flex: 1;
        padding: 12px;
        border-radius: 4px 0 0 4px;
    }
    
    .footer-form button {
        padding: 0 15px;
        border-radius: 0 4px 4px 0;
    }
}

/* Pour les petits téléphones mobiles (576px et moins) */
@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .packages-container,
    .offers-container,
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin-bottom: 0.5rem;
    }
    
    .footer-info {
        align-items: center;
        text-align: center;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-image {
        width: 80%;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .auth-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Styles pour la barre de navigation */
.top-bar {
    background-color: var(--dark-color);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--secondary-color);
}

.top-bar-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--light-color);
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}

.nav-links ul {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--light-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition-fast);
}

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

.balls-counter {
    background-color: var(--accent-color);
    color: var(--light-color);
    padding: 8px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.balls-counter:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.balls-counter i {
    font-size: 1.1rem;
}

/* Hamburger menu pour mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--light-color);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* Media Queries */
@media (max-width: 992px) {
    .top-bar-container {
        width: 95%;
    }
    
    .nav-links ul {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
    
    .packages-container,
    .offers-container,
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 15px 0 5px 0;
        border-bottom: 3px solid var(--secondary-color);
        position: relative;
    }
    
    .top-bar-container {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }
    
    .top-bar-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px 15px;
        position: relative;
    }
    
    .logo {
        text-align: center;
        margin-bottom: 8px;
    }
    
    .logo h1 {
        font-size: 2.2rem;
        font-weight: 800;
        margin: 0;
        letter-spacing: 1px;
        color: white;
    }
    
    .balls-counter {
        padding: 8px 25px;
        border-radius: 30px;
        font-size: 1.1rem;
        background-color: #FF6B00;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-width: 120px;
        height: 40px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    }
    
    .balls-counter i {
        font-size: 1.2rem;
        color: white;
    }
    
    .balls-counter span {
        font-weight: 700;
        color: white;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 20px;
        width: 35px;
        height: 25px;
        z-index: 1001;
        background: transparent;
    }
    
    .mobile-menu-toggle span {
        height: 3px;
        background-color: var(--light-color);
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--primary-color);
        padding: 80px 20px 20px;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        font-weight: 700;
    }
    
    .hero-content {
        padding: 0 5%;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .platforms-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .packages-container,
    .offers-container,
    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .exclusive-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-sections {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .top-bar {
        padding: 10px 0;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .balls-counter {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 60px 5%;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    .blog-container {
        grid-template-columns: 1fr;
    }
    
    .task-form {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 0.5rem;
    }
    
    .newsletter-form button {
        border-radius: 5px;
    }
    
    section {
        padding: 40px 0;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}
