/* ============================================
   ROOT VARIABLES & BASE STYLES
   ============================================ */

:root {
    /* Primary Colors */
    --primary-color: #F17B15;
    --primary-dark: #D4690F;
    --primary-light: #FF8F2E;
    --primary-lighter: #FFA85C;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #E9ECEF;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --black: #000000;
    
    /* Text Colors */
    --text-primary: #212529;
    --text-secondary: #495057;
    --text-light: #6C757D;
    
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-dark: #212529;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    --element-spacing: 30px;
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 15px 35px rgba(241, 123, 21, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.section {
    padding: var(--section-padding);
}

.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    background-color: var(--primary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ============================================
   CARDS
   ============================================ */

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: rotate(-3deg) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition-base);
}

.card:hover::before {
    transform: scaleX(1);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */

.decorative-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    margin: 20px 0;
    border-radius: 2px;
}

.decorative-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-lighter), var(--primary-color));
    opacity: 0.1;
    position: absolute;
    z-index: -1;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* ============================================
   HEADER
   ============================================ */

.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-base);
}

.logo-link:hover {
    transform: rotate(-3deg) scale(1.05);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 30px;
    align-items: center;
}

.navbar-menu li {
    margin: 0;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-base);
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: var(--transition-base);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 10px 0;
    min-width: 200px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) rotate(-3deg);
    transition: var(--transition-base);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) rotate(0deg);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary);
    transition: var(--transition-base);
}

.dropdown-link:hover {
    background: var(--light-gray);
    color: var(--primary-color);
    padding-left: 25px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2C3E50 100%);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    position: relative;
}

.footer-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-base);
    position: relative;
    padding-left: 15px;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: var(--transition-base);
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-link:hover::before {
    opacity: 1;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

.disclaimer-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.disclaimer-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.disclaimer-text a {
    color: var(--primary-light);
    text-decoration: underline;
}

.disclaimer-text a:hover {
    color: var(--primary-color);
}

.footer-organizations {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.org-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    min-width: 150px;
}

.org-item:hover {
    background: rgba(241, 123, 21, 0.2);
    transform: rotate(-3deg) scale(1.05);
}

.org-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-weight: 500;
}

.org-phone {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.org-badge {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(241, 123, 21, 0.2);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .card:hover {
        transform: rotate(-3deg) scale(1.01);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 15px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: var(--transition-base);
    }
    
    .navbar-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-organizations {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   HOME PAGE
   ============================================ */

.hero-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-lighter), transparent);
    opacity: 0.1;
    border-radius: 50%;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.hero-image-wrapper:hover .hero-image {
    transform: rotate(-3deg) scale(1.05);
    box-shadow: var(--shadow-hover);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.intro-section {
    background: var(--bg-primary);
}

.intro-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.intro-block {
    animation-delay: 0.2s;
}

.intro-block:nth-child(2) {
    animation-delay: 0.4s;
}

.block-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.block-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.block-text {
    line-height: 1.8;
    color: var(--text-secondary);
}

.offers-section {
    background: var(--bg-secondary);
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.offer-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: var(--white);
    border: 2px solid transparent;
    transition: var(--transition-base);
}

.offer-card:hover {
    border-color: var(--primary-color);
    transform: rotate(-3deg) scale(1.03);
}

.offer-logo {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.offer-logo .logo-img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.offer-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px;
    background: linear-gradient(135deg, var(--primary-lighter), var(--primary-color));
    border-radius: var(--radius-sm);
    color: var(--white);
}

.rating-stars {
    font-size: 1.2rem;
}

.rating-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.offer-content {
    flex-grow: 1;
    margin-bottom: 20px;
}

.offer-title {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.offer-points {
    margin-bottom: 20px;
}

.points-title {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.points-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.points-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.points-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.offer-bonus {
    background: var(--light-gray);
    padding: 15px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.offer-bonus strong {
    color: var(--primary-color);
}

.offer-license {
    text-align: center;
    margin-bottom: 20px;
}

.license-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(241, 123, 21, 0.1);
    color: var(--primary-dark);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--primary-color);
}

.offer-btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.events-section {
    background: var(--bg-primary);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.event-card {
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.event-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-lighter), var(--primary-color));
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.event-discipline {
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-date {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.event-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.event-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.event-details {
    margin-bottom: 15px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
}

.event-details p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.event-details strong {
    color: var(--text-primary);
}

.event-description {
    line-height: 1.7;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-blocks {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   NEWS PAGE (Actualités Sportives)
   ============================================ */

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.page-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

.news-section {
    background: var(--bg-secondary);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    padding: 0;
    overflow: hidden;
    transition: var(--transition-base);
}

.news-item:hover {
    transform: rotate(-3deg) scale(1.01);
    box-shadow: var(--shadow-hover);
}

.news-image-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news-item:hover .news-image {
    transform: scale(1.1);
}

.news-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.news-meta {
    margin-bottom: 15px;
}

.news-date {
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

.news-title {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-title:hover {
    color: var(--primary-color);
}

.news-text {
    flex-grow: 1;
}

.news-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .news-item {
        grid-template-columns: 1fr;
    }
    
    .news-image-wrapper {
        height: 250px;
    }
}

/* ============================================
   EVENTS PAGE (Événements à Venir)
   ============================================ */

.major-events-section {
    background: var(--bg-secondary);
}

.major-events-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.major-event-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
    padding: 0;
    overflow: hidden;
    transition: var(--transition-base);
}

.major-event-card:hover {
    transform: rotate(-3deg) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.event-image-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.major-event-card:hover .event-image {
    transform: scale(1.15);
}

.event-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.event-header-info {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.event-period {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
}

.event-type {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-secondary);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-name {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.event-description {
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.05rem;
    flex-grow: 1;
}

@media (max-width: 968px) {
    .major-event-card {
        grid-template-columns: 1fr;
    }
    
    .event-image-wrapper {
        height: 300px;
    }
}

/* ============================================
   SPORT PAGES (Football, Tennis, etc.)
   ============================================ */

.sport-content {
    background: var(--bg-secondary);
}

.content-section {
    margin-bottom: 60px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.section-heading {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.section-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.competitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.competition-card {
    padding: 25px;
    transition: var(--transition-base);
}

.competition-card:hover {
    transform: rotate(-3deg) scale(1.02);
    border-left: 4px solid var(--primary-color);
}

.competition-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.competition-description {
    line-height: 1.8;
    color: var(--text-secondary);
}

.info-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 20px;
}

.info-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.info-list li::before {
    content: '⚽';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.tennis-page .info-list li::before {
    content: '🎾';
}

.basketball-page .info-list li::before {
    content: '🏀';
}

.formule1-page .info-list li::before {
    content: '🏎️';
}

.competitions-section {
    margin-bottom: 40px;
}

.competitions-section:last-child {
    margin-bottom: 0;
}

.subsection-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

/* ============================================
   RESPONSIBLE GAMING PAGE
   ============================================ */

.responsible-content {
    background: var(--bg-secondary);
}

.warning-box {
    background: linear-gradient(135deg, rgba(241, 123, 21, 0.1), rgba(241, 123, 21, 0.05));
    border-left: 5px solid var(--primary-color);
    padding: 30px;
    margin-bottom: 40px;
}

.warning-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.warning-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.warning-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 20px;
}

.warning-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.warning-list li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

.tips-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 20px;
}

.tips-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.tips-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    background: rgba(241, 123, 21, 0.1);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.help-card {
    padding: 25px;
}

.help-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.help-organization {
    margin-bottom: 25px;
}

.help-organization:last-child {
    margin-bottom: 0;
}

.org-name {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.org-phone {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.org-phone a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.org-hours,
.org-note,
.org-site {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.org-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-top: 10px;
}

.urgent-help {
    background: linear-gradient(135deg, rgba(241, 123, 21, 0.15), rgba(241, 123, 21, 0.05));
    border: 2px solid var(--primary-color);
    padding: 30px;
    margin-top: 40px;
}

.urgent-title {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.urgent-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 20px;
}

.urgent-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.urgent-list li::before {
    content: '📞';
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

.urgent-message {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-weight: 500;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-sm);
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-content {
    background: var(--bg-secondary);
}

.mission-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 20px;
}

.mission-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.mission-list li::before {
    content: '🎯';
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

.important-box {
    background: linear-gradient(135deg, rgba(241, 123, 21, 0.1), rgba(241, 123, 21, 0.05));
    border-left: 5px solid var(--primary-color);
    padding: 25px;
    margin-top: 30px;
}

.important-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.important-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    padding: 25px;
    transition: var(--transition-base);
}

.value-card:hover {
    transform: rotate(-3deg) scale(1.02);
    border-top: 4px solid var(--primary-color);
}

.value-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-description {
    line-height: 1.8;
    color: var(--text-secondary);
}

.contact-info {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(241, 123, 21, 0.1), rgba(241, 123, 21, 0.05));
    border: 2px solid var(--primary-color);
}

.contact-email {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.email-icon {
    font-size: 2rem;
    margin-right: 10px;
}

.email-link {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition-base);
}

.email-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-note {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-note a {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-content {
    background: var(--bg-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form-wrapper {
    padding: 40px;
}

.form-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.form-input,
.form-textarea {
    padding: 14px 18px;
    border: 2px solid var(--gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition-base);
    background: var(--white);
    color: var(--text-primary);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(241, 123, 21, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    padding: 30px;
}

.info-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.info-text {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.contact-email {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(241, 123, 21, 0.1), rgba(241, 123, 21, 0.05));
    border-radius: var(--radius-md);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    color: var(--text-primary);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(-3deg) translateX(5px);
}

.social-icon {
    font-size: 1.5rem;
}

.social-text {
    font-weight: 500;
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LEGAL PAGES (Terms, Privacy)
   ============================================ */

.legal-content {
    background: var(--bg-secondary);
}

.legal-intro {
    padding: 30px;
    background: linear-gradient(135deg, rgba(241, 123, 21, 0.1), rgba(241, 123, 21, 0.05));
    border-left: 5px solid var(--primary-color);
    margin-bottom: 40px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin: 0;
}

.legal-sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.legal-section {
    padding: 30px;
    transition: var(--transition-base);
}

.legal-section:hover {
    transform: rotate(-2deg) scale(1.01);
    border-left: 4px solid var(--primary-color);
}

.legal-heading {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray);
}

.legal-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.legal-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 20px;
}

.legal-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.legal-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.legal-contact {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(241, 123, 21, 0.1), rgba(241, 123, 21, 0.05));
    border-radius: var(--radius-md);
    margin-top: 15px;
}

.legal-contact .email-link {
    font-size: 1.2rem;
    font-weight: 600;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 20px auto 0;
    font-weight: 400;
}

/* ============================================
   FORM ERRORS
   ============================================ */

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

.form-input.error,
.form-textarea.error {
    border-color: #dc3545;
}

/* ============================================
   DECORATIVE SPORTS ELEMENTS
   ============================================ */

body::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(241, 123, 21, 0.05), transparent);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(241, 123, 21, 0.03), transparent);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

/* ============================================
   ADDITIONAL HOVER EFFECTS
   ============================================ */

.nav-link,
.footer-link,
.dropdown-link {
    position: relative;
}

.nav-link::before,
.footer-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--primary-color);
    transition: var(--transition-base);
}

.nav-link:hover::before,
.footer-link:hover::before {
    width: 100%;
}

/* ============================================
   LOADING ANIMATION
   ============================================ */

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.info-list li strong {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .competitions-grid {
        grid-template-columns: 1fr;
    }
}

