/* ==========================================================================
   VARIABLES DE LA CHARTE GRAPHIQUE TEAM JMR
   ========================================================================== */
:root {
    --bg-dark: #121212;       
    --bg-card: #1a1a1a;       
    --blue-royal: #004AAD;    
    --argent: #EAEAEA;        
    --text-muted: #aaaaaa;    
    --font-main: 'Montserrat', sans-serif;
}

/* ==========================================================================
   RESETS & BASICS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--argent);
    font-family: var(--font-main);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* ==========================================================================
   BARRE DE NAVIGATION
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.98);
    border-bottom: 1px solid rgba(234, 234, 234, 0.1);
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    height: 45px;
    width: auto;
}

.brand-name {
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: var(--argent);
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    margin-left: 25px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--blue-royal);
}

/* ==========================================================================
   SECTION HERO
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../assets/logo.png') no-repeat center center;
    background-size: 35%;
    padding: 0 20px;
    margin-top: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.96) 0%, rgba(12, 12, 12, 0.98) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.badge-elite {
    background-color: var(--blue-royal);
    color: var(--argent);
    padding: 6px 15px;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 3px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 15px;
    line-height: 1.1;
}

.devise {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--blue-royal);
    color: var(--argent);
    border: 2px solid var(--blue-royal);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--argent);
}

.btn-secondary {
    background-color: transparent;
    color: var(--argent);
    border: 2px solid rgba(234, 234, 234, 0.4);
}

.btn-secondary:hover {
    border-color: var(--blue-royal);
    color: var(--blue-royal);
}

.section-badge {
    color: var(--blue-royal);
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.section-intro {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
    text-align: center;
}

/* ==========================================================================
   MATCH CENTER
   ========================================================================== */
.match-center {
    padding: 100px 20px 60px 20px;
    text-align: center;
}

.match-center h2 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.match-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(234, 234, 234, 0.05);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.team {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.team img {
    height: 80px;
    width: auto;
}

.adversary-logo-placeholder {
    height: 80px;
    width: 80px;
    background-color: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-muted);
}

.team h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.match-info {
    flex: 1;
    border-left: 1px solid rgba(234, 234, 234, 0.1);
    border-right: 1px solid rgba(234, 234, 234, 0.1);
    padding: 0 20px;
}

.competition {
    color: var(--blue-royal);
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.time {
    font-size: 3rem;
    font-weight: 900;
    margin: 10px 0;
    color: var(--argent);
}

.stade {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   SECTION LE CLUB
   ========================================================================== */
.about-section {
    padding: 100px 20px 80px 20px;
    background-color: #161616;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-highlights {
    display: flex;
    gap: 30px;
    margin: 35px 0;
}

.highlight-item {
    flex: 1;
    background-color: var(--bg-dark);
    padding: 20px;
    border-left: 4px solid var(--blue-royal);
    border-radius: 0 8px 8px 0;
}

.highlight-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--argent);
}

.highlight-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.about-image-area {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-frame {
    border: 2px solid rgba(234, 234, 234, 0.05);
    padding: 20px;
    background-color: var(--bg-card);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.about-img {
    max-height: 350px;
    width: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
}

/* ==========================================================================
   SECTION DIRECTION
   ========================================================================== */
.direction-section {
    padding: 100px 20px 80px 20px;
    background-color: var(--bg-dark);
    text-align: center;
}

.executive-leader-block {
    display: flex;
    justify-content: center;
    margin: 40px 0 60px 0;
}

.president-card-premium {
    background-color: var(--bg-card);
    border-radius: 16px;
    border: 2px solid var(--blue-royal);
    max-width: 800px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 74, 173, 0.15);
}

.p-img-box {
    flex: 1;
    max-width: 320px;
    background-color: #000;
}

.p-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-info-box {
    flex: 1.3;
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.role-badge {
    background-color: var(--blue-royal);
    color: var(--argent);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 900;
    border-radius: 4px;
    letter-spacing: 2px;
    display: inline-block;
    width: max-content;
    margin-bottom: 15px;
}

.p-info-box h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--argent);
    margin-bottom: 15px;
}

.president-quote {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
    border-left: 3px solid var(--blue-royal);
    padding-left: 15px;
}

.board-members-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.board-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(234, 234, 234, 0.05);
    width: 280px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.board-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue-royal);
    box-shadow: 0 15px 30px rgba(0, 74, 173, 0.15);
}

.board-img-holder {
    height: 320px;
    background-color: #161616;
    overflow: hidden;
    border-bottom: 1px solid rgba(234, 234, 234, 0.03);
}

.board-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.board-card:hover .board-img-holder img {
    transform: scale(1.04);
}

.board-meta {
    padding: 20px;
    text-align: left;
}

.board-role {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--blue-royal);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 5px;
}

.board-meta h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--argent);
}

/* ==========================================================================
   SECTION ACTUALITÉS
   ========================================================================== */
.news-section {
    padding: 100px 20px 80px 20px;
    background-color: #161616;
}

.news-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.news-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    width: 360px;
    border: 1px solid rgba(234, 234, 234, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 74, 173, 0.3);
}

.news-img-holder {
    height: 240px;
    background-color: #121212;
    overflow: hidden;
    position: relative;
}

.news-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-img-holder img {
    transform: scale(1.03);
}

.graphic-news-bg {
    background: linear-gradient(135deg, #1a1a1a 0%, #002252 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.graphic-news-bg img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.news-content-block {
    padding: 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-tag-badge {
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 4px;
    width: max-content;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-tag-badge.internal { background-color: rgba(234,234,234,0.08); color: var(--argent); }
.news-tag-badge.sport { background-color: rgba(0, 74, 173, 0.15); color: #3b82f6; }
.news-tag-badge.player { background-color: rgba(212, 175, 55, 0.1); color: #d4af37; }

.news-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 8px;
}

.news-content-block h4 {
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--argent);
}

.news-content-block p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.event-highlight-card {
    cursor: pointer;
    border: 1px solid rgba(0, 74, 173, 0.15) !important;
}

.event-highlight-card:hover {
    border-color: var(--blue-royal) !important;
    box-shadow: 0 10px 25px rgba(0, 74, 173, 0.2) !important;
}

.photo-count-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(0, 74, 173, 0.9);
    color: var(--argent);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.read-more-link {
    font-size: 0.85rem;
    color: var(--blue-royal);
    font-weight: 700;
    margin-top: auto;
    padding-top: 15px;
    transition: color 0.3s;
}

.event-highlight-card:hover .read-more-link {
    color: var(--argent);
}

/* ==========================================================================
   SECTION EFFECTIF
   ========================================================================== */
.squad-section {
    padding: 100px 20px 80px 20px;
    text-align: center;
}

.squad-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.category-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    width: 260px;
    height: 300px;
    border: 1px solid rgba(234, 234, 234, 0.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-icon-bg {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 7rem;
    color: rgba(0, 74, 173, 0.05);
    z-index: 1;
    transition: all 0.4s ease;
}

.card-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 12px;
    pointer-events: none;
    transition: all 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 74, 173, 0.3);
    background-color: #1c1c1c;
}

.category-card:hover .card-glow-effect {
    border-color: var(--blue-royal);
    box-shadow: inset 0 0 20px rgba(0, 74, 173, 0.2);
}

.category-card:hover .category-icon-bg {
    color: rgba(0, 74, 173, 0.25);
    transform: scale(1.15) rotate(-5deg);
}

.category-info {
    position: relative;
    z-index: 2;
    text-align: left;
    border-left: 4px solid var(--blue-royal);
    padding-left: 15px;
}

.category-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 3px;
}

.category-info h4 {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--argent);
    letter-spacing: 1px;
}

.players-list-container {
    margin-top: 50px;
    background-color: #181818;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(234, 234, 234, 0.02);
}

.players-list-container h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--blue-royal);
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-align: left;
    border-bottom: 1px solid rgba(234, 234, 234, 0.05);
    padding-bottom: 10px;
}

.dynamic-players-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.player-mini-card {
    background-color: var(--bg-card);
    padding: 25px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 320px;
    border-left: 4px solid var(--blue-royal);
}

.p-num {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(234, 234, 234, 0.2);
}

.p-details {
    text-align: left;
}

.p-pos {
    font-size: 0.75rem;
    color: var(--blue-royal);
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}

.p-details h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--argent);
}

.recruitment-cta {
    margin-top: 60px;
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    border: 1px solid rgba(234, 234, 234, 0.05);
}

.recruitment-cta p {
    font-size: 1.1rem;
    font-weight: 700;
}

/* ==========================================================================
   SECTION HUB MÉDIA
   ========================================================================== */
.media-section {
    padding: 100px 20px 80px 20px;
    background-color: #161616;
    text-align: center;
}

.clickable-cover-container {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.7);
    cursor: pointer;
    border: 1px solid rgba(234, 234, 234, 0.1);
}

.squad-group-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.cover-interactive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 74, 173, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.overlay-btn-center {
    background-color: var(--blue-royal);
    padding: 15px 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.overlay-btn-center i {
    font-size: 1.1rem;
}

.clickable-cover-container:hover .squad-group-photo {
    transform: scale(1.03);
}

.clickable-cover-container:hover .cover-interactive-overlay {
    opacity: 1;
}

.gallery-expansion-tray {
    margin-top: 40px;
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(234, 234, 234, 0.05);
    animation: slideDown 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.gallery-expansion-tray h3 {
    text-align: left;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--blue-royal);
    margin-bottom: 30px;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(234, 234, 234, 0.05);
    padding-bottom: 10px;
}

.tray-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.tray-item {
    height: 220px;
    background-color: var(--bg-dark);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(234, 234, 234, 0.03);
}

.tray-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.tray-item:hover img {
    transform: scale(1.05);
}

.speech-container {
    background-color: var(--bg-dark);
    border-radius: 8px;
    padding: 40px;
    border-left: 4px solid var(--blue-royal);
    text-align: left;
    margin-bottom: 25px;
}

.speech-header {
    position: relative;
    margin-bottom: 25px;
}

.global-quote-icon {
    position: absolute;
    right: 0;
    top: -10px;
    font-size: 3.5rem;
    color: rgba(0, 74, 173, 0.08);
}

.speech-header h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--argent) !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 5px !important;
}

.speech-author {
    font-size: 0.85rem;
    color: var(--blue-royal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.speech-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.speech-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cccccc;
    font-style: italic;
}

/* ==========================================================================
   SECTION DEVENIR MEMBRE
   ========================================================================== */
.membership-section {
    padding: 100px 20px 80px 20px;
    text-align: center;
}

.membership-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.cards-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.member-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(234, 234, 234, 0.05);
    border-radius: 12px;
    padding: 40px 30px;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 74, 173, 0.2);
}

.card-tier {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.card-standard .card-tier { color: var(--argent); }
.card-premium .card-tier { color: var(--blue-royal); }
.card-vip .card-tier { color: #D4AF37; }

.card-price {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--argent);
}

.card-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.card-features {
    list-style: none;
    width: 100%;
    margin-bottom: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-features li {
    font-size: 0.95rem;
    color: var(--argent);
    position: relative;
    padding-left: 25px;
}

.card-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blue-royal);
    font-weight: 900;
}

.btn-card {
    width: 100%;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    border-radius: 4px;
    border: 2px solid rgba(234, 234, 234, 0.2);
    color: var(--argent);
    margin-top: auto;
    transition: all 0.3s;
}

.btn-card:hover {
    background-color: var(--argent);
    color: var(--bg-dark);
    border-color: var(--argent);
}

.member-card.highlight {
    border: 2px solid var(--blue-royal);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.member-card.highlight:hover {
    transform: scale(1.05) translateY(-5px);
}

.member-card.highlight .btn-card {
    background-color: var(--blue-royal);
    border-color: var(--blue-royal);
}

.member-card.highlight .btn-card:hover {
    background-color: transparent;
    color: var(--blue-royal);
}

/* ==========================================================================
   SECTION CONTACT
   ========================================================================== */
.contact-section {
    padding: 100px 20px 80px 20px;
    background-color: #161616;
}

.contact-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.contact-info-block {
    flex: 1;
    text-align: left;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.contact-info-block p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    color: var(--blue-royal);
    font-size: 1.2rem;
}

.contact-form-block {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    background-color: var(--bg-dark);
    border: 1px solid rgba(234, 234, 234, 0.1);
    padding: 15px;
    color: var(--argent);
    font-family: var(--font-main);
    border-radius: 4px;
    font-size: 0.95rem;
    width: 100%;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--blue-royal);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(234, 234, 234, 0.05);
    padding: 60px 20px 20px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(234, 234, 234, 0.05);
}

.footer-brand {
    text-align: left;
    max-width: 400px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
}

.footer-socials {
    text-align: right;
}

.footer-socials h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-icons a {
    background-color: var(--bg-card);
    color: var(--argent);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(234, 234, 234, 0.05);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--blue-royal);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 74, 173, 0.3);
}

.footer-bottom {
    padding-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

/* ==========================================================================
   ANIMATIONS & REVEALS
   ========================================================================== */
.section-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.section-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-section { background-size: 60%; }
    .hero-content h1 { font-size: 2.2rem; }
    .match-card { flex-direction: column; gap: 30px; }
    .match-info { border-left: none; border-right: none; border-top: 1px solid rgba(234, 234, 234, 0.1); border-bottom: 1px solid rgba(234, 234, 234, 0.1); padding: 20px 0; width: 100%; }
    .about-container, .president-card-premium, .board-members-grid, .contact-container, .footer-container { flex-direction: column; text-align: center; gap: 40px; }
    .president-card-premium { max-width: 100%; }
    .p-img-box { max-width: 100%; height: 300px; }
    .p-info-box { text-align: center; padding: 30px 20px; }
    .role-badge { margin: 0 auto 15px auto; }
    .board-card { width: 100%; }
    .board-img-holder { height: 360px; }
    .news-card { width: 100%; }
    .about-text, .contact-info-block, .footer-brand, .footer-socials { text-align: center; max-width: 100%; }
    .social-icons { justify-content: center; }
    .about-highlights { flex-direction: column; gap: 15px; }
    .recruitment-cta { flex-direction: column; text-align: center; gap: 20px; }
    .player-mini-card { width: 100%; }
    .member-card.highlight { transform: scale(1); }
    .member-card.highlight:hover { transform: translateY(-10px); }
}