/* General styles */

:root {
    /* Palette de couleurs principales */
    --color-bg-dark: #0e1a2b;
    --color-bg-lighter: #1c2b3e;
    --color-bg-card: #283d55;
    --color-accent: #64ffda;
    --color-accent-darker: #54d6b8;
    --color-text-primary: #fff;
    --color-text-secondary: #a8b2cd;
    
    /* Font Awesome variables */
    --fa-style-family-brands: "Font Awesome 6 Brands";
    --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
    --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
    --fa-style-family-classic: "Font Awesome 6 Free";
    --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
    
    /* Effets */
    --transition-speed: 0.3s;
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.4);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    
    /* Typographie */
    --font-family-primary: 'Montserrat', sans-serif;
    --font-family-secondary: 'Roboto', sans-serif;
    
    /* Layout */
    --container-padding: 30px;
    --grid-gap-sm: 15px;
    --grid-gap-md: 25px;
    --grid-gap-lg: 40px;
}

/* Styles de base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family-primary);
    background-color: var(--color-bg-dark); 
    color: var(--color-text-primary);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--color-text-secondary);
    text-decoration: none;
}

/* Système de grille responsive moderne */
.grid {
    display: grid;
    gap: var(--grid-gap-md);
}

.grid-col-2 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-col-3 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-col-4 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .grid-col-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-col-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-col-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-col-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-col-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-col-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero {
        padding: 200px 0;
    }
    
    .hero-title {
        font-size: 4em;
    }
    
    .hero-subtitle {
        font-size: 1.5em;
    }
    
    .detail-header-content h1 {
        font-size: 3.5em;
    }
    
    .newsletter-box {
        padding: 50px 40px;
    }
    
    .footer-inner {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Header */
.site-header {
    background-color: rgba(14, 26, 43, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    transition: all var(--transition-speed) ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    flex-direction: column;
    z-index: 101;
}

.logo-text {
    font-size: 2em;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 5px;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 3px;
}

.logo-tagline {
    font-size: 0.9em;
    color: var(--color-text-secondary);
}

/* Menu hamburger pour mobile */
.menu-toggle {
    display: block;
    position: relative;
    z-index: 101;
    width: 30px;
    height: 22px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text-primary);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 10px;
}

.menu-toggle span:nth-child(3) {
    top: 20px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

.main-nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.main-nav.active {
    max-height: 300px;
}

.main-nav ul {
    list-style: none;
    padding: 20px 0 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.main-nav li {
    margin-bottom: 15px;
    margin-left: 0;
}

.main-nav a {
    color: var(--color-text-secondary);
    padding: 8px 0;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-speed) ease;
    position: relative;
    display: inline-block;
}

.main-nav a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-speed) ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-text-primary);
}

.main-nav a:hover:before,
.main-nav a.active:before {
    width: 100%;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
    
    .main-nav {
        width: auto;
        max-height: none;
    }
    
    .main-nav ul {
        flex-direction: row;
        padding: 0;
    }
    
    .main-nav li {
        margin-left: 30px;
        margin-bottom: 0;
    }
    
    .main-nav a {
        padding: 12px 15px;
    }
}

/* Styles pour la barre de recherche */
.search-container {
    position: relative;
    margin: 0 2rem;
    width: 300px;
}

.search-input-wrapper {
    display: flex;
    position: relative;
}

.search-form input[type="text"] {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    transition: all 0.3s;
}

.search-form input[type="text"]:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.search-form input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 8px;
    font-size: 14px;
}

.search-button:hover {
    color: #fff;
}

/* Styles pour les résultats de recherche en temps réel */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 350px;
    max-height: 450px;
    overflow-y: auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    margin-top: 8px;
    display: none;
}

.search-results::-webkit-scrollbar {
    width: 8px;
}

.search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.search-result-category {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.search-result-category h3 {
    color: #333;
    font-size: 14px;
    margin: 0 0 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.search-result-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-result-category li {
    margin-bottom: 5px;
}

.search-result-category li:last-child {
    margin-bottom: 0;
}

.search-result-category a {
    color: inherit;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.search-result-category a:hover {
    background-color: #f5f5f5;
}

.result-item {
    display: flex;
    align-items: center;
    padding: 5px;
}

.result-content {
    flex: 1;
}

.result-name {
    font-weight: 500;
    color: #0e1a2b;
    font-size: 14px;
}

.result-subtitle {
    font-size: 12px;
    color: #777;
    margin-top: 2px;
}

.result-badge {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    color: white;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    flex-shrink: 0;
}

.view-more {
    text-align: right;
    padding: 5px 0 0;
    font-size: 12px;
}

.view-more a {
    color: #0e6efd;
    text-decoration: none;
}

.view-more a:hover {
    text-decoration: underline;
}

.view-all-results {
    padding: 10px 15px;
    text-align: center;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.view-all-results a {
    color: #0e6efd;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
}

.view-all-results a:hover {
    text-decoration: underline;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #777;
}

/* Page de résultats de recherche */
.search-results-page {
    padding: 2rem 0;
}

.search-results-page h1 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.search-summary {
    color: #666;
    margin-bottom: 2rem;
}

.search-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 8px 15px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 30px;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    background-color: #e9e9e9;
}

.filter-btn.active {
    background-color: #0e1a2b;
    border-color: #0e1a2b;
    color: #fff;
}

.filter-btn[data-filter="articles"] {
    border-bottom: 2px solid #e53935;
}

.filter-btn[data-filter="fighters"] {
    border-bottom: 2px solid #3949ab;
}

.filter-btn[data-filter="events"] {
    border-bottom: 2px solid #00897b;
}

.filter-btn[data-filter="clubs"] {
    border-bottom: 2px solid #8e24aa;
}

.filter-btn[data-filter="coaches"] {
    border-bottom: 2px solid #f9a825;
}

.filter-btn[data-filter="organizations"] {
    border-bottom: 2px solid #6d4c41;
}

.search-category-results {
    margin-bottom: 3rem;
}

.search-category-results h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #0e1a2b;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.article-result {
    border-left: 3px solid #e53935;
}

.fighter-result {
    border-left: 3px solid #3949ab;
}

.event-result {
    border-left: 3px solid #00897b;
}

.club-result {
    border-left: 3px solid #8e24aa;
}

.coach-result {
    border-left: 3px solid #f9a825;
}

.organization-result {
    border-left: 3px solid #6d4c41;
}

.result-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.result-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.result-card a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.result-image {
    height: 150px;
    overflow: hidden;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.result-card:hover .result-image img {
    transform: scale(1.05);
}

.result-info {
    padding: 15px;
}

.result-info h3 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #ffffff;;
}

.result-info p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #666;
}

.result-date, .fighter-stats {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
}

.fighter-stats .country {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.fighter-stats .country img {
    width: 16px;
    height: 12px;
    margin-right: 5px;
}

/* Adaptations pour mobile */
@media (max-width: 768px) {
    .search-container {
        width: 100%;
        margin: 15px 0;
        order: 3;
    }
    
    .header-inner {
        flex-wrap: wrap;
    }
    
    .search-results {
        width: 100%;
    }
    
    .search-filters {
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }
    
    .results-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* Styles pour les badges de catégorie dans les résultats de recherche */
.category-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    z-index: 5;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.article-badge {
    background-color: #e53935;
}

.fighter-badge {
    background-color: #3949ab;
}

.event-badge {
    background-color: #00897b;
}

.club-badge {
    background-color: #8e24aa;
}

.coach-badge {
    background-color: #f9a825;
}

.organization-badge {
    background-color: #6d4c41;
}

/* Styles pour les icônes de catégories */
.category-icon {
    margin-right: 10px;
    width: 22px;
}

/* Footer */
.site-footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-secondary);
    padding: 60px 0;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    font-size: 0.9em;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}

.footer-col h3 {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: var(--color-text-primary);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 3px;
}

.footer-col p {
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-text-secondary);
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-accent);
    text-decoration: none;
    transform: translateX(5px);
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 1.2em;
    color: var(--color-text-secondary);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
}

.social-icons a:hover {
    color: var(--color-bg-dark);
    background-color: var(--color-accent);
    transform: translateY(-5px);
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--color-text-secondary);
    margin-bottom: 15px;
    font-size: 0.9em;
    transition: all var(--transition-speed) ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
    width: 100%;
}

.copyright {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    text-align: center;
}

.footer-bottom-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--color-text-secondary);
}

/* Cards */
.card {
    background-color: var(--color-bg-lighter);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(100, 255, 218, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.card:hover .card-img img {
    transform: scale(1.05);
}

.card-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8em;
    font-weight: 600;
    z-index: 1;
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    color: var(--color-text-primary);
    margin-bottom: 15px;
    font-size: 1.4em;
    font-weight: 700;
}

.card-text {
    color: var(--color-text-secondary);
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    font-size: 0.85em;
    flex-wrap: wrap;
    gap: 10px;
}

.card-meta span {
    color: var(--color-text-secondary);
}

.card-meta span i {
    margin-right: 5px;
}

/* Styles pour les cartes d'organisations */
.organizations-section {
    padding: 60px 0;
}

.organization-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.organization-card .card-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.organization-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.organization-card .card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 25px;
    position: relative;
}

.organization-card .logo-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-bg-lighter);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 2px solid var(--color-accent);
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.organization-card .organization-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.organization-card .card-title {
    margin-top: 30px;
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 5px;
}

.organization-card .org-full-name {
    text-align: center;
    color: var(--color-accent);
    font-size: 0.9em;
    margin-bottom: 15px;
    font-style: italic;
}

.organization-card .organization-location {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    margin-bottom: 15px;
    font-size: 0.9em;
}

.organization-card .organization-location i {
    margin-right: 5px;
    color: var(--color-accent);
}

.organization-card .rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    margin-bottom: 15px;
    color: var(--color-accent);
}

.organization-card .rating-value {
    margin-left: 5px;
    color: var(--color-text-secondary);
}

.organization-card .card-text {
    text-align: center;
    margin-bottom: 20px;
    flex-grow: 1;
}

.organization-card .btn {
    margin-top: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-weight: 600;
    text-align: center;
    border: none;
    font-family: var(--font-family-primary);
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
    box-shadow: 0 2px 5px rgba(100, 255, 218, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-accent-darker);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(100, 255, 218, 0.4);
    color: var(--color-bg-dark);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--color-text-secondary);
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--color-text-primary);
    transform: translateY(-2px);
    border-color: rgba(100, 255, 218, 0.3);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.85em;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-text-primary);
    font-family: var(--font-family-primary);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 2px;
}

h3 {
    font-size: 1.6em;
}

h4 {
    font-size: 1.3em;
}

h5 {
    font-size: 1.1em;
}

p {
    margin-bottom: 20px;
}

/* Page Header Section */
.page-header {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--color-text-primary);
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(14, 26, 43, 0.7), rgba(14, 26, 43, 0.9));
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.header-content h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.header-content p {
    font-size: 1.2em;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .header-content h1 {
        font-size: 3em;
    }
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(14, 26, 43, 0.7), rgba(14, 26, 43, 0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--color-text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.1em;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

@media (min-width: 768px) {
    .hero {
        padding: 150px 0;
    }
    
    .hero-title {
        font-size: 3.5em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
}

/* Sections génériques */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Featured Section */
.featured-section {
    padding: 60px 0;
}

/* Events Section */
.events-section {
    padding: 60px 0;
}

.event-card {
    background-color: var(--color-bg-lighter);
    border-radius: var(--border-radius-md);
    padding: 25px;
    margin-bottom: 30px;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
    padding: 10px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    min-width: 70px;
}

.event-day {
    font-size: 1.8em;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-info {
    flex: 1;
}

.event-title {
    margin-bottom: 10px;
    font-size: 1.3em;
}

.event-location {
    color: var(--color-text-secondary);
    margin-bottom: 15px;
    font-size: 0.9em;
}

.event-location i {
    margin-right: 5px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 1s ease forwards;
}

.slide-in-right {
    animation: slideInRight 1s ease forwards;
}

.slide-up {
    animation: slideUp 0.8s ease forwards;
}

/* Effets spéciaux */
.glow-border {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.glow-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(100, 255, 218, 0) 0%, 
        rgba(100, 255, 218, 0.2) 50%,
        rgba(100, 255, 218, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 200%; }
}

.neon-text {
    text-shadow: 0 0 5px rgba(100, 255, 218, 0.7), 0 0 10px rgba(100, 255, 218, 0.5);
    color: var(--color-accent);
}

/* Profile Cards pour les combattants */
.profile-card {
    background-color: var(--color-bg-lighter);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.profile-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}

.profile-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.profile-card:hover .profile-img img {
    transform: scale(1.05);
}

.profile-flag {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-text-primary);
}

.profile-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.profile-title {
    color: var(--color-text-primary);
    margin-bottom: 5px;
    font-size: 1.4em;
    font-weight: 700;
}

.profile-subtitle {
    color: var(--color-accent);
    font-size: 1em;
    margin-bottom: 15px;
    font-style: italic;
}

.profile-info {
    margin-bottom: 20px;
}

.profile-info span {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 8px;
    color: var(--color-text-secondary);
    font-size: 0.9em;
}

.profile-info span i {
    margin-right: 5px;
    color: var(--color-accent);
}

.profile-stats {
    display: flex;
    margin-bottom: 20px;
    gap: 15px;
}

.stat-item {
    flex: 1;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: var(--border-radius-sm);
}

.stat-value {
    font-size: 1.6em;
    font-weight: 700;
    color: var(--color-text-primary);
}

.stat-label {
    font-size: 0.85em;
    color: var(--color-text-secondary);
    text-transform: uppercase;
}

/* Filtres et recherche */
.filters-section {
    padding: 30px 0;
}

.filters-container {
    margin-bottom: 30px;
}

.search-box {
    position: relative;
    margin-bottom: 20px;
}

.search-box input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border-radius: var(--border-radius-sm);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.1);
    color: var(--color-text-primary);
    font-size: 0.95em;
    transition: all var(--transition-speed) ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.08);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-text-secondary);
    cursor: pointer;
    font-size: 1.2em;
    padding: 8px;
    transition: color var(--transition-speed) ease;
}

.search-box button:hover {
    color: var(--color-accent);
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-button {
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-size: 0.9em;
}

.filter-button:hover,
.filter-button.active {
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
    gap: 10px;
}

.pagination-item {
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--color-text-secondary);
    transition: all var(--transition-speed) ease;
}

.pagination-item:hover,
.pagination-item.active {
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
    transform: translateY(-3px);
}

/* Newsletter */
.newsletter-section {
    padding: 60px 0;
}

.newsletter-box {
    background-color: var(--color-bg-lighter);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.newsletter-content h2 {
    margin-bottom: 20px;
    padding-bottom: 0;
}

.newsletter-content h2::after {
    display: none;
}

.newsletter-form-container {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .newsletter-form-container {
        margin-top: 30px;
    }
}

/* Detail pages (article, fighter, event) */
.detail-header {
    background-size: cover;
    background-position: center;
    padding: 150px 0 80px;
    position: relative;
    color: var(--color-text-primary);
}

.detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(14, 26, 43, 0.7), rgba(14, 26, 43, 0.9));
    z-index: 1;
}

.detail-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.detail-header-content h1 {
    margin-bottom: 15px;
    font-size: 2.8em;
}

.category-badge, .organization-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
    padding: 5px 15px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 20px;
}

.detail-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--color-text-secondary);
    font-size: 0.9em;
}

.detail-meta span i {
    margin-right: 5px;
}

.tag {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
    padding: 3px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8em;
    margin-right: 5px;
    display: inline-block;
}

.detail-content {
    margin-bottom: 40px;
}

/* Sidebar widgets */
.sidebar-widget {
    background-color: var(--color-bg-lighter);
    border-radius: var(--border-radius-md);
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    font-size: 1.3em;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}

/* Mobile-specific styles */
@media (max-width: 767px) {
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.6em;
    }
    
    h3 {
        font-size: 1.4em;
    }
    
    .container {
        padding: 20px;
    }
    
    .hero, .page-header {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2em;
    }
    
    .detail-header-content h1 {
        font-size: 2em;
    }
    
    .detail-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .newsletter-box {
        padding: 30px 20px;
    }
}

/* Styles pour le mode sombre automatique */
@media (prefers-color-scheme: dark) {
    :root {
        --color-bg-dark: #0e1a2b;
        --color-bg-lighter: #1c2b3e;
        --color-bg-card: #283d55;
    }
}

/* Responsive font-size improvements */
html {
    font-size: 16px;
}

@media (min-width: 768px) {
    html {
        font-size: 17px;
    }
}

@media (min-width: 1200px) {
    html {
        font-size: 18px;
    }
}

/* Utilitaires */
.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;
}

/* Styles pour les clubs */
.clubs-list-section {
    padding: 60px 0;
}

/* Styles des cartes de clubs */
.club-card {
    background-color: var(--color-bg-lighter);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(100, 255, 218, 0.05);
}

.club-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(100, 255, 218, 0.2);
}

.club-header {
    position: relative;
    height: 160px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.club-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(14, 26, 43, 0.4), rgba(14, 26, 43, 0.7));
    z-index: 1;
}

.club-logo {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-bg-lighter);
    overflow: hidden;
    border: 2px solid var(--color-accent);
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
    z-index: 2;
}

.club-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.club-content {
    padding: 40px 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.club-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.4em;
}

.club-location {
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: 15px;
    font-size: 0.9em;
}

.club-location i {
    color: var(--color-accent);
    margin-right: 5px;
}

.club-founded {
    display: block;
    margin-top: 5px;
    font-size: 0.9em;
}

.club-description {
    text-align: center;
    margin-bottom: 20px;
    flex-grow: 1;
    color: var(--color-text-secondary);
    font-size: 0.95em;
}

.club-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    gap: 10px;
}

.club-card .btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

/* Page de détail club */
.club-detail-header {
    padding: 180px 0 80px;
}

.club-profile {
    text-align: center;
    padding: 20px;
}

.club-logo-container {
    margin: -80px auto 30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-accent);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.4);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.club-logo-container img.club-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.club-slogan {
    max-width: 80%;
    margin: 0 auto 30px;
    padding: 25px;
    border-radius: var(--border-radius-md);
    background-color: rgba(255, 255, 255, 0.03);
}

.club-slogan blockquote {
    color: var(--color-accent);
    font-size: 1.1em;
    font-style: italic;
}

.specialties-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.specialty-tag {
    padding: 5px 15px;
    background-color: rgba(100, 255, 218, 0.1);
    border: 1px solid rgba(100, 255, 218, 0.3);
    border-radius: var(--border-radius-sm);
    color: var(--color-accent);
    font-size: 0.9em;
}

.facilities-list {
    list-style: none;
    padding: 0;
}

.facilities-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.facilities-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--color-accent);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th, .schedule-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.schedule-table th {
    color: var(--color-text-primary);
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.05);
}

.contact-details p {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.contact-details p i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--color-accent);
    width: 20px;
    text-align: center;
}

.membership-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.club-map {
    height: 250px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

/* Galerie */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    height: 200px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Card de combattant dans la page club */
.fighter-card {
    background-color: var(--color-bg-lighter);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 100%;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.fighter-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.fighter-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.fighter-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fighter-card:hover .fighter-img img {
    transform: scale(1.05);
}

.fighter-flag {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 20px;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.fighter-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fighter-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fighter-title {
    font-size: 1.1em;
    margin-bottom: 5px;
}

.fighter-subtitle {
    color: var(--color-accent);
    font-size: 0.9em;
    margin-bottom: 10px;
}

.fighter-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.85em;
}

.fighter-record {
    padding: 3px 8px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-sm);
}

.fighter-record .win {
    color: #4CAF50;
}

.fighter-record .loss {
    color: #F44336;
}

.fighter-record .draw {
    color: #FFC107;
}

.fighter-division {
    color: var(--color-text-secondary);
}

/* Page événement */
.event-status {
    margin-top: 30px;
}

.status {
    display: inline-block;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    margin-bottom: 20px;
}

.status.upcoming {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.status.past {
    background-color: rgba(244, 67, 54, 0.2);
    color: #F44336;
    border: 1px solid rgba(244, 67, 54, 0.4);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.countdown-item {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 15px 10px;
    border-radius: var(--border-radius-sm);
    min-width: 80px;
    text-align: center;
}

.countdown-number {
    font-size: 1.8em;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    color: var(--color-accent);
}

.countdown-label {
    font-size: 0.8em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

.event-meta-item {
    display: inline-flex;
    align-items: center;
    margin: 0 10px 10px;
}

.event-meta-item i {
    color: var(--color-accent);
    margin-right: 5px;
}

.fight-card {
    background-color: var(--color-bg-lighter);
    border-radius: var(--border-radius-md);
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    box-shadow: var(--shadow-md);
}

.fight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.fight-card.main-event {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.main-event-badge, .title-fight-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 15px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8em;
    font-weight: 700;
    z-index: 1;
}

.main-event-badge {
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
}

.title-fight-badge {
    background-color: #FFC107;
    color: #333;
    top: -10px;
    right: 20px;
    left: auto;
    transform: none;
}

.fight-matchup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-top: 10px;
}

.fighter-left, .fighter-right {
    flex: 1;
    text-align: center;
}

.fighter-name {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.fighter-record {
    color: var(--color-text-secondary);
    font-size: 0.85em;
}

.versus {
    font-weight: 700;
    margin: 0 15px;
    font-size: 1.3em;
    color: var(--color-accent);
}

.fight-details {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.weight-class {
    font-size: 0.9em;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
}

.fight-result {
    margin-top: 10px;
}

.fight-result .winner {
    font-weight: 700;
    color: var(--color-accent);
    display: block;
    margin-bottom: 5px;
}

.fight-result .method, .fight-result .round {
    font-size: 0.9em;
    color: var(--color-text-secondary);
    display: inline-block;
    margin-right: 10px;
}

.broadcast-details {
    margin-bottom: 20px;
}

.broadcast-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.broadcast-item i {
    color: var(--color-accent);
    width: 20px;
    margin-right: 10px;
}

.similar-event {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.similar-event:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.similar-event-img {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-right: 15px;
}

.similar-event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-event-content {
    flex: 1;
}

.similar-event-content h4 {
    font-size: 1.1em;
    margin-bottom: 5px;
}

.similar-event-meta {
    font-size: 0.85em;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
}

.event-now {
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
    padding: 10px 15px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 1.2em;
    text-align: center;
}

/* Page article */
.article-content-section {
    padding: 60px 0;
}

.article-excerpt {
    font-size: 1.2em;
    color: var(--color-text-primary);
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    line-height: 1.8;
}

.article-content {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-tags {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.article-tags h4 {
    margin-bottom: 15px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.comments-section {
    margin-top: 50px;
    padding: 30px;
    border-radius: var(--border-radius-md);
}

.comment-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--color-text-primary);
    font-size: 1em;
    font-family: var(--font-family-primary);
    transition: all var(--transition-speed) ease;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.08);
}

.related-articles-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-article {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.related-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-article-img {
    width: 80px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-right: 15px;
}

.related-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-article-content {
    flex: 1;
}

.related-article-content h4 {
    font-size: 1em;
    margin-bottom: 5px;
}

.related-article-meta {
    font-size: 0.8em;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
}

/* Section partage */
.share-section {
    padding: 30px 0 60px;
}

.share-box {
    background-color: var(--color-bg-lighter);
    border-radius: var(--border-radius-md);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.share-box h3 {
    margin-bottom: 25px;
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-share-item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 1.4em;
    color: var(--color-text-primary);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
}

.social-share-item:hover {
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
    transform: translateY(-5px);
}

/* Responsive pour les pages de détail */
@media (max-width: 767px) {
    .club-logo-container {
        margin-top: -60px;
        width: 100px;
        height: 100px;
    }
    
    .club-slogan {
        max-width: 100%;
    }
    
    .specialties-list {
        justify-content: center;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 1.4em;
    }
    
    .fight-matchup {
        flex-direction: column;
        gap: 15px;
    }
    
    .versus {
        margin: 10px 0;
    }
    
    .social-share {
        flex-wrap: wrap;
    }
}

/* Styles pour les publicités */
.pub-card {
    border: 2px solid #ffcc00;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.pub-card:hover {
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
    transform: translateY(-5px);
}

.pub-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 204, 0, 0.8);
    color: #333;
    padding: 3px 8px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 3px;
    z-index: 2;
}

.pub-card .card-content {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.05), rgba(255, 204, 0, 0.15));
}

.pub-card .btn-secondary {
    background-color: #ffcc00;
    color: #333;
}

.pub-card .btn-secondary:hover {
    background-color: #e6b800;
}
