:root {
    --neon-green: #39FF14;
    --electric-blue: #00D4FF;
    --dark-pitch: #0A1628;
    --midnight: #0D0D0D;
    --steel: #1A2332;
    --orange-fire: #FF6B35;
    --gold: #FFD700;
    --white: #FFFFFF;
    --gray-light: #B8C5D6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--midnight);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Bandeau Site À Vendre */
.sale-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--gold), #FFA500, var(--gold));
    color: var(--midnight);
    padding: 0.6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 1100;
    font-size: 0.9rem;
    font-weight: 600;
    flex-wrap: wrap;
}

.sale-icon {
    font-size: 1.2rem;
}

.sale-text {
    text-align: center;
}

.sale-btn {
    background: var(--midnight);
    color: var(--gold);
    padding: 0.4rem 1rem;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--midnight);
}

.sale-btn:hover {
    background: transparent;
    color: var(--midnight);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--neon-green), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-light);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--neon-green);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--neon-green);
}

.nav-links a:hover::before {
    width: 100%;
}

/* Boutons */
.btn-neon {
    background: transparent;
    color: var(--neon-green);
    padding: 0.8rem 2rem;
    border: 2px solid var(--neon-green);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neon-green);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-neon:hover {
    color: var(--midnight);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
}

.btn-neon:hover::before {
    left: 0;
}

.btn-solid {
    background: linear-gradient(135deg, var(--neon-green), var(--electric-blue));
    color: var(--midnight);
    padding: 1rem 2.5rem;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(57, 255, 20, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem 5% 8rem;
    position: relative;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(57, 255, 20, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        var(--midnight);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2339FF14' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    max-width: 650px;
    z-index: 10;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid var(--neon-green);
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-green);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    line-height: 0.95;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    display: block;
    background: linear-gradient(90deg, var(--neon-green), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.85;
    mask-image: linear-gradient(to right, transparent 0%, black 20%, black 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 100%);
}

/* Section Styles */
.section {
    padding: 6rem 5%;
    position: relative;
}

.section-dark {
    background: var(--dark-pitch);
}

.section-darker {
    background: var(--midnight);
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-header h2 span {
    color: var(--neon-green);
}

.section-header p {
    color: var(--gray-light);
    line-height: 1.7;
}

/* Histoire Section */
.history-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.history-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--neon-green);
}

.history-text p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.history-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.history-stat {
    background: var(--steel);
    padding: 2rem;
    text-align: center;
    border-left: 3px solid var(--neon-green);
}

.history-stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--neon-green);
}

.history-stat-label {
    color: var(--gray-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Règlements Section */
.rules-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.rule-card {
    background: var(--steel);
    padding: 2.5rem;
    position: relative;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.rule-card:hover {
    border-color: rgba(57, 255, 20, 0.3);
    transform: translateY(-5px);
}

.rule-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-green), var(--electric-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.rule-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.rule-card p {
    color: var(--gray-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.rule-card ul {
    list-style: none;
    margin-top: 1rem;
}

.rule-card ul li {
    color: var(--gray-light);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.rule-card ul li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--neon-green);
}

/* Tournois Section */
.tournaments-grid {
    max-width: 1200px;
    margin: 0 auto;
}

/* World Cup 2026 Feature */
.worldcup-feature {
    max-width: 1200px;
    margin: 0 auto 4rem;
    background: linear-gradient(135deg, var(--steel) 0%, var(--dark-pitch) 100%);
    border: 2px solid var(--neon-green);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.worldcup-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-green), var(--electric-blue), var(--neon-green));
}

.worldcup-header {
    text-align: center;
    margin-bottom: 3rem;
}

.worldcup-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--midnight);
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.worldcup-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--neon-green), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.worldcup-location {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

.worldcup-dates {
    color: var(--neon-green);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.worldcup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.worldcup-info,
.worldcup-competitions,
.worldcup-tarifs,
.worldcup-services {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-left: 3px solid var(--neon-green);
}

.worldcup-info h4,
.worldcup-competitions h4,
.worldcup-tarifs h4,
.worldcup-services h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.worldcup-info ul,
.worldcup-services ul {
    list-style: none;
}

.worldcup-info ul li,
.worldcup-services ul li {
    color: var(--gray-light);
    padding: 0.4rem 0;
    font-size: 0.9rem;
}

.worldcup-contact {
    margin-top: 1rem;
    color: var(--electric-blue);
    font-weight: 600;
}

.competitions-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.competition-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

.comp-name {
    color: var(--white);
}

.comp-format {
    color: var(--electric-blue);
}

.comp-matchs {
    color: var(--gray-light);
}

.tarif-box {
    background: rgba(57, 255, 20, 0.1);
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.tarif-box.tarif-late {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.tarif-period {
    margin-bottom: 0.5rem;
}

.period-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--neon-green);
}

.tarif-late .period-label {
    color: var(--orange-fire);
}

.tarif-row {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

.tarif-price {
    color: var(--white);
    font-weight: 600;
}

.tarif-note {
    font-size: 0.8rem;
    color: var(--gray-light);
    font-style: italic;
}

.worldcup-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Tournament Cards */
.tournament-card {
    background: var(--steel);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.tournament-card:hover {
    border-color: var(--neon-green);
    transform: translateX(10px);
}

.tournament-date {
    background: linear-gradient(135deg, var(--neon-green), var(--electric-blue));
    padding: 1.5rem;
    text-align: center;
    min-width: 100px;
}

.tournament-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--midnight);
}

.tournament-date .year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--midnight);
}

.tournament-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.tournament-info .location {
    color: var(--neon-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tournament-info p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.tournament-link {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tournament-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--gray-light);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.tournament-link a:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.tournament-link a svg {
    width: 16px;
    height: 16px;
}

/* Fédérations Section */
.federations-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.federation-card {
    background: var(--steel);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.federation-card:hover {
    border-color: var(--neon-green);
}

.federation-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neon-green), var(--electric-blue));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--midnight);
}

.federation-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.federation-card p {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.federation-card a {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.federation-card a:hover {
    color: var(--electric-blue);
}

/* Pays Section */
.countries-section {
    background: var(--steel);
    padding: 3rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    text-align: center;
}

.countries-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.countries-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.country-tag {
    background: var(--dark-pitch);
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    border: 1px solid rgba(57, 255, 20, 0.2);
    transition: all 0.3s ease;
}

.country-tag:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
}

/* Contact Form */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--gray-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--steel);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group select {
    width: 100%;
    padding: 1rem 3rem 1rem 1.2rem;
    background: var(--steel);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2339FF14' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

.form-group select:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2339FF14' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select option {
    background: var(--steel);
}

.form-note {
    font-size: 0.8rem;
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

.form-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: none;
    text-align: center;
}

.form-message.success {
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    display: block;
}

.form-message.error {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--orange-fire);
    color: var(--orange-fire);
    display: block;
}

/* Footer */
.footer {
    background: var(--dark-pitch);
    padding: 5rem 5% 2rem;
    border-top: 1px solid rgba(57, 255, 20, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.footer-brand p {
    color: var(--gray-light);
    margin-top: 1rem;
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-column h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--neon-green);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul a:hover {
    color: var(--neon-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-light);
    font-size: 0.85rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--neon-green);
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* Animation hamburger -> X */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Style du bouton quand menu ouvert - visible au-dessus du menu */
.mobile-menu-btn.active {
    position: fixed;
    top: 80px;
    right: 4%;
    z-index: 1003;
}

/* ================================================
   RESPONSIVE - TABLETTE (max 1024px)
   ================================================ */
@media (max-width: 1024px) {
    .hero-visual {
        width: 45%;
        opacity: 0.5;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .history-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .tournament-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .tournament-date {
        justify-self: center;
    }
    
    .tournament-link {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .federations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================================================
   RESPONSIVE - TABLETTE PETITE (max 900px)
   ================================================ */
@media (max-width: 900px) {
    .worldcup-grid {
        grid-template-columns: 1fr;
    }
    
    .worldcup-header h3 {
        font-size: 2rem;
    }
    
    .competition-item {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }
    
    .worldcup-feature {
        padding: 2rem 1.5rem;
    }
    
    .worldcup-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .worldcup-cta .btn-solid,
    .worldcup-cta .btn-neon {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* ================================================
   RESPONSIVE - MOBILE (max 768px)
   ================================================ */
@media (max-width: 768px) {
    /* Sale Banner */
    .sale-banner {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        gap: 0.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .sale-icon {
        font-size: 1rem;
    }
    
    .sale-btn {
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
        margin-top: 0.3rem;
    }
    
    /* Navbar */
    .navbar {
        top: 68px;
        padding: 1rem 4%;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .navbar .btn-neon {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Menu mobile ouvert */
    .nav-links.mobile-open {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height pour mobile */
        background: #0D0D0D; /* Fond complètement opaque */
        padding: 120px 2rem 2rem;
        gap: 1.5rem;
        z-index: 1001;
        align-items: center;
        justify-content: flex-start;
        animation: fadeIn 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-links.mobile-open::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0D0D0D;
        z-index: -1;
    }
    
    .nav-links.mobile-open li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links.mobile-open a {
        font-size: 1.4rem;
        padding: 1rem 0;
        display: block;
        color: var(--white);
    }
    
    .nav-links.mobile-open a:hover,
    .nav-links.mobile-open a:active {
        color: var(--neon-green);
    }
    
    .nav-links.mobile-open a::before {
        display: none; /* Désactiver la ligne de soulignement sur mobile */
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    /* Hero Section */
    .hero {
        padding: 10rem 4% 4rem;
        min-height: auto;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero h1 {
        font-size: 2.4rem;
        letter-spacing: 2px;
    }
    
    .hero p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn-solid,
    .hero-buttons .btn-neon {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }
    
    .hero-visual {
        position: absolute;
        width: 100%;
        opacity: 0.2;
    }
    
    .hero-image {
        mask-image: none;
        -webkit-mask-image: none;
    }
    
    /* Sections */
    .section {
        padding: 4rem 4%;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    /* Histoire */
    .history-text h3 {
        font-size: 1.5rem;
    }
    
    .history-text p {
        font-size: 0.9rem;
    }
    
    .history-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .history-stat {
        padding: 1.2rem;
    }
    
    .history-stat-number {
        font-size: 2rem;
    }
    
    .history-stat-label {
        font-size: 0.7rem;
    }
    
    /* Rules Grid */
    .rules-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .rule-card {
        padding: 1.5rem;
    }
    
    .rule-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .rule-card h3 {
        font-size: 1.2rem;
    }
    
    .rule-card p {
        font-size: 0.85rem;
    }
    
    .rule-card ul li {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }
    
    /* World Cup Feature */
    .worldcup-feature {
        padding: 1.5rem;
        margin: 0 -4%;
        border-left: none;
        border-right: none;
    }
    
    .worldcup-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    
    .worldcup-header h3 {
        font-size: 1.6rem;
    }
    
    .worldcup-location {
        font-size: 1rem;
    }
    
    .worldcup-dates {
        font-size: 1.2rem;
    }
    
    .worldcup-info h4,
    .worldcup-competitions h4,
    .worldcup-tarifs h4,
    .worldcup-services h4 {
        font-size: 1.1rem;
    }
    
    .worldcup-info ul li,
    .worldcup-services ul li {
        font-size: 0.8rem;
    }
    
    .competition-item {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }
    
    .tarif-box {
        padding: 0.8rem;
    }
    
    .tarif-row {
        font-size: 0.85rem;
    }
    
    /* Tournaments */
    .tournament-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .tournament-card:hover {
        transform: none;
    }
    
    .tournament-date {
        justify-self: center;
        padding: 1rem;
        min-width: 80px;
    }
    
    .tournament-date .month {
        font-size: 0.7rem;
    }
    
    .tournament-date .year {
        font-size: 1.5rem;
    }
    
    .tournament-info h3 {
        font-size: 1.3rem;
    }
    
    .tournament-info p {
        font-size: 0.85rem;
    }
    
    .tournament-link {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tournament-link a {
        justify-content: center;
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Federations */
    .federations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .federation-card {
        padding: 2rem 1.5rem;
    }
    
    .federation-card:hover {
        border-color: transparent;
    }
    
    .federation-logo {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .federation-card h3 {
        font-size: 1.1rem;
    }
    
    .federation-card p {
        font-size: 0.85rem;
    }
    
    /* Countries */
    .countries-section {
        padding: 2rem 1.5rem;
        margin: 3rem -4% 0;
    }
    
    .countries-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .country-tag {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .country-tag:hover {
        border-color: rgba(57, 255, 20, 0.2);
        color: var(--white);
    }
    
    /* Contact Form */
    .contact-container {
        padding: 0;
    }
    
    .form-group label {
        font-size: 0.75rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 16px; /* Empêche le zoom sur iOS */
    }
    
    .form-group select {
        padding: 0.9rem 2.5rem 0.9rem 1rem;
        font-size: 16px; /* Empêche le zoom sur iOS */
    }
    
    .form-note {
        font-size: 0.75rem;
    }
    
    .form-submit {
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 4% 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        margin-bottom: 1rem;
    }
    
    .footer-brand .logo {
        font-size: 1.8rem;
    }
    
    .footer-brand p {
        font-size: 0.85rem;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-column ul li {
        margin-bottom: 0.6rem;
    }
    
    .footer-column ul a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 2rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* ================================================
   RESPONSIVE - TRÈS PETIT ÉCRAN (max 480px)
   ================================================ */
@media (max-width: 480px) {
    .sale-banner {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .navbar {
        top: 72px;
        padding: 0.8rem 3%;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 9rem 3% 3rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    .section {
        padding: 3rem 3%;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .history-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    
    .history-stat {
        padding: 1rem;
    }
    
    .history-stat-number {
        font-size: 1.6rem;
    }
    
    .worldcup-feature {
        padding: 1rem;
    }
    
    .worldcup-header h3 {
        font-size: 1.3rem;
    }
    
    .worldcup-dates {
        font-size: 1rem;
    }
    
    .btn-solid, .btn-neon {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .countries-section h3 {
        font-size: 1rem;
    }
}

/* ================================================
   ANIMATIONS
   ================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   AMÉLIORATION TOUCH SUR MOBILE
   ================================================ */
@media (hover: none) and (pointer: coarse) {
    .btn-neon:hover::before {
        left: -100%;
    }
    
    .btn-neon:active {
        color: var(--midnight);
        background: var(--neon-green);
    }
    
    .btn-solid:hover {
        transform: none;
    }
    
    .btn-solid:active {
        transform: scale(0.98);
    }
    
    .rule-card:hover {
        transform: none;
        border-color: transparent;
    }
    
    .tournament-card:hover {
        transform: none;
        border-color: transparent;
    }
    
    .federation-card:hover {
        border-color: transparent;
    }
    
    .country-tag:hover {
        border-color: rgba(57, 255, 20, 0.2);
        color: var(--white);
    }
}

/* Tap highlight pour iOS */
* {
    -webkit-tap-highlight-color: rgba(57, 255, 20, 0.2);
}

/* Safe area pour les appareils avec notch */
@supports (padding: max(0px)) {
    .sale-banner {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
    
    .navbar {
        padding-left: max(4%, env(safe-area-inset-left));
        padding-right: max(4%, env(safe-area-inset-right));
    }
    
    .footer {
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    }
}