/* ===== CLASSEMENT DES ARRONDISSEMENTS ===== */
.arrondissement-ranking {
    padding: 3rem 0;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.ranking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.ranking-header .section-title {
    text-align: left;
    margin: 0;
    font-size: 1.8rem;
}

.ranking-header .section-title::after {
    left: 0;
    transform: none;
    width: 60px;
}

.btn-view-ranking {
    color: #c49a6c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-view-ranking:hover {
    gap: 0.8rem;
    color: #a67b4e;
}

/* Message dynamique */
.ranking-message {
    background: linear-gradient(135deg, #1a3b5c 0%, #0f2a40 100%);
    border-radius: 15px;
    padding: 1.2rem 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.ranking-message i {
    font-size: 2rem;
    color: #c49a6c;
}

.ranking-message .message-content {
    flex: 1;
}

.ranking-message .message-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Tableau classement */
.ranking-table-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
}

.ranking-table th {
    background: #1a3b5c;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 500;
}

.ranking-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.ranking-table tr:last-child td {
    border-bottom: none;
}

.ranking-table .rang-cell {
    text-align: center;
    width: 70px;
    font-size: 1.5rem;
}

.ranking-table .votes-cell {
    font-weight: 700;
    color: #c49a6c;
}

.medal-1, .medal-2, .medal-3 {
    display: inline-block;
}

.ranking-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.btn-view-all-ranking {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #c49a6c;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-view-all-ranking:hover {
    background: #a67b4e;
    gap: 0.8rem;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .ranking-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .ranking-table th,
    .ranking-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .ranking-table .rang-cell {
        width: 50px;
        font-size: 1.2rem;
    }
    
    .ranking-message {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
}







/* Reset et variables */
:root {
    --primary: #c49a6c;
    --primary-dark: #a67b4e;
    --secondary: #333;
    --light: #f9f9f9;
    --dark: #1a1a1a;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--secondary);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Header & Navigation */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.mobile-only {
    display: none;
}

.highlight-link {
    color: var(--primary);
    font-weight: 600;
}

/* Section Candidate du Jour */
.candidate-of-day {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    color: white;
}

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

.candidate-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.candidate-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.candidate-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.candidate-image:hover img {
    transform: scale(1.05);
}

.candidate-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.candidate-badge i {
    color: gold;
}

.candidate-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.candidate-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.candidate-bio {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.vote-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.vote-count {
    font-size: 2rem;
    font-weight: 700;
    color: gold;
}

.btn-vote {
    background: white;
    color: var(--primary);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-vote:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: var(--primary);
    color: white;
}

.btn-vote i {
    transition: var(--transition);
}

.btn-vote:hover i {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 2rem 0;
        gap: 1rem;
        transition: 0.3s;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-only {
        display: block;
    }

    .candidate-card {
        grid-template-columns: 1fr;
    }

    .candidate-info h2 {
        font-size: 2rem;
    }
}

/* Footer (on garde celui qu'on a fait) */
.footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}
																								  
																								  /* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 3rem 0;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary);
}

/* Candidates Grid */
.candidates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.candidate-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    text-align: center;
    padding-bottom: 1.5rem;
}

.candidate-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.candidate-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.candidate-item h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.3rem;
}

.candidate-item p {
    color: var(--primary);
    margin-bottom: 1rem;
}

.btn-small {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-small:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.btn-profile {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    padding-bottom: 0.25rem;
}

.btn-profile:hover {
    border-bottom-color: white;
}

/* Animation pour le menu */
@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}
																																		
																																		/* Dans assets/css/style.css, ajoute : */

.no-candidates {
    padding: 4rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.alert {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #c49a6c;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.alert h2 {
    color: #333;
    margin-bottom: 1rem;
}

.alert i {
    color: #c49a6c;
    margin-right: 0.5rem;
}

.alert p {
    color: #666;
    font-size: 1.1rem;
}

/* Image par défaut si pas de photo */
.candidate-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background: #f0f0f0;
}

.candidate-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #f0f0f0;
}
																																		
																																		/* Footer Styles - Version complète */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem 0;
    margin-top: 3rem;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #c49a6c;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #c49a6c;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #c49a6c;
    padding-left: 5px;
}

.footer-col p {
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-logo {
    margin-bottom: 1rem;
    max-width: 80px;
    height: auto;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
}

.contact-info i {
    color: #c49a6c;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #c49a6c;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-bottom .langues {
    margin-top: 0.5rem;
    color: #c49a6c;
}

/* Styles pour les liens du footer */
.footer-col ul li {
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s;
}

.footer-col ul li:hover {
    padding-left: 5px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-col h4 {
        text-align: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-logo {
        margin: 0 auto 1rem;
        display: block;
    }
}

/* Pour très petits écrans */
@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 0.5rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
}
																																		
																																		/* Header sombre */
.header {
    background: #0a0a0a;  /* Noir profond */
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%); /* Dégradé sombre */
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(196, 154, 108, 0.3); /* Ligne dorée subtile */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.1); /* Un peu plus brillant sur fond sombre */
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Hamburger Menu - version sombre */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: #ffffff; /* Blanc pour le menu hamburger */
    transition: all 0.3s ease;
}

/* Navigation menu - version sombre */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff; /* Texte blanc */
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #c49a6c; /* Doré */
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #c49a6c; /* Doré au survol */
}

/* Lien spécial "Candidate du jour" */
.highlight-link {
    color: #c49a6c !important;
    font-weight: 600;
    background: rgba(196, 154, 108, 0.1);
    padding: 0.5rem 1rem !important;
    border-radius: 50px;
    border: 1px solid rgba(196, 154, 108, 0.3);
}

.highlight-link:hover {
    background: rgba(196, 154, 108, 0.2);
    border-color: #c49a6c;
}

.highlight-link::after {
    display: none; /* Pas de soulignement pour ce lien spécial */
}

.highlight-link i {
    color: #c49a6c;
    margin-right: 0.3rem;
}

/* Mobile-only */
.mobile-only {
    display: none;
}

/* Version mobile */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: #0a0a0a; /* Fond sombre */
        background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
        width: 80%;
        max-width: 400px;
        height: 100vh;
        text-align: left;
        padding: 80px 2rem 2rem;
        gap: 1rem;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0,0,0,0.5);
        border-left: 1px solid rgba(196, 154, 108, 0.2);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.8rem 0;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .mobile-only {
        display: block;
        margin-top: 1rem;
    }

    .highlight-link {
        background: rgba(196, 154, 108, 0.15);
        border: 1px solid #c49a6c;
        text-align: center;
        margin-top: 1rem;
        padding: 1rem !important;
    }

    .logo-img {
        height: 50px;
    }
}

/* Pour très petits écrans */
@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .nav-menu {
        width: 100%;
        max-width: none;
    }
}

/* Optionnel : Si tu veux un header transparent au début qui devient sombre au scroll */
.header.scrolled {
    background: #0a0a0a;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
																																		
																																		/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(196, 154, 108, 0.3);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #c49a6c;
}

/* Filters Section */
.filters-section {
    background: #f8f9fa;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.filters-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    font-weight: 500;
}

.filter-label i {
    color: #c49a6c;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex: 1;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 50px;
    color: #495057;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #c49a6c;
    color: white;
    border-color: #c49a6c;
}

.filter-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid #dee2e6;
}

.filter-stats i {
    color: #c49a6c;
}

/* Candidates Grid Section */
.candidates-grid-section {
    padding: 3rem 0;
}

.candidates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* Candidate Card */
.candidate-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.candidate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.candidate-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.candidate-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.candidate-card:hover .candidate-card-image img {
    transform: scale(1.1);
}

.vote-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(196, 154, 108, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    backdrop-filter: blur(5px);
}

.vote-badge i {
    color: #ff4444;
}

.candidate-card-content {
    padding: 1.5rem;
}

.candidate-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.candidate-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.meta-item {
    font-size: 0.9rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.meta-item i {
    color: #c49a6c;
    font-size: 0.8rem;
}

.candidate-profession {
    font-size: 0.95rem;
    color: #495057;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.candidate-profession i {
    color: #c49a6c;
    font-size: 0.9rem;
}

.candidate-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.btn-view {
    color: #c49a6c;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.btn-view:hover {
    gap: 0.5rem;
    color: #a67b4e;
}

.btn-vote-small {
    background: none;
    border: 1px solid #c49a6c;
    color: #c49a6c;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-vote-small:hover {
    background: #c49a6c;
    color: white;
}

.btn-vote-small i {
    transition: transform 0.3s ease;
}

.btn-vote-small:hover i {
    transform: scale(1.2);
}

/* No candidates message */
.no-candidates-message {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px dashed #dee2e6;
}

.no-candidates-message i {
    font-size: 4rem;
    color: #c49a6c;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-candidates-message h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.no-candidates-message p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.btn-reset {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #c49a6c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    background: #a67b4e;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .filters-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .filter-stats {
        width: 100%;
        justify-content: center;
    }
    
    .candidates-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .candidate-card-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .candidates-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
}
																																		/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

/* Contact Info */
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(196, 154, 108, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c49a6c;
    font-size: 1.2rem;
}

.info-content h3 {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0.3rem;
}

.info-content p {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.info-content a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: #c49a6c;
}

/* Hours Card */
.hours-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hours-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #c49a6c;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.hours-card ul {
    list-style: none;
}

.hours-card li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed #e9ecef;
}

.hours-card li:last-child {
    border-bottom: none;
}

.hours-card span {
    font-weight: 600;
    color: #333;
}

/* Social Card */
.social-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-card h3 {
    color: #c49a6c;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: #e4405f;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.youtube {
    background: #ff0000;
}

.social-link.tiktok {
    background: #000000;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-control {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #c49a6c;
    box-shadow: 0 0 0 3px rgba(196, 154, 108, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: #c49a6c;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    background: #a67b4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 154, 108, 0.3);
}

.btn-submit i {
    transition: transform 0.3s;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert i {
    font-size: 1.2rem;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: white;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 0;
    }
    
    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hours-card li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.3rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .btn-submit {
        width: 100%;
    }
}
																																		
																																		/* Concept Page Styles */

/* Presentation */
.concept-presentation {
    padding: 4rem 0;
    background: white;
}

.presentation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.presentation-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.presentation-text .lead {
    font-size: 1.2rem;
    color: #c49a6c;
    margin-bottom: 1rem;
    font-weight: 500;
}

.presentation-text p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.8;
}

.presentation-image {
    position: relative;
}

.rounded-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.image-caption {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: #c49a6c;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(196, 154, 108, 0.3);
}

/* Criteria Section */
.criteria-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.criteria-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.criterion-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.criterion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.criterion-icon {
    width: 80px;
    height: 80px;
    background: rgba(196, 154, 108, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #c49a6c;
    font-size: 2rem;
}

.criterion-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.criterion-card p {
    color: #666;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    padding: 4rem 0;
    background: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 2rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #c49a6c;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 80px;
}

.timeline-number {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    background: #c49a6c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(196, 154, 108, 0.3);
}

.timeline-content {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    color: #c49a6c;
    margin-bottom: 0.5rem;
}

.timeline-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.timeline-stats span {
    background: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Rewards Section */
.rewards-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: white;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reward-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.reward-card.featured {
    background: rgba(196, 154, 108, 0.2);
    border: 2px solid #c49a6c;
    transform: scale(1.05);
}

.reward-icon {
    font-size: 2.5rem;
    color: #c49a6c;
    margin-bottom: 1rem;
}

.reward-card h3 {
    margin-bottom: 1rem;
}

.reward-card ul {
    list-style: none;
    margin: 1rem 0;
}

.reward-card li {
    margin-bottom: 0.5rem;
}

.total {
    font-weight: 700;
    color: #c49a6c;
    margin-top: 1rem;
}

/* Objectives Section */
.objectives-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.objective-item {
    text-align: center;
    padding: 1.5rem;
}

.objective-item i {
    font-size: 2.5rem;
    color: #c49a6c;
    margin-bottom: 1rem;
}

.objective-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.objective-item p {
    color: #666;
    line-height: 1.6;
}

/* Videos Page Styles */

.video-filters-section {
    background: #f8f9fa;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.youtube-channel-section {
    padding: 2rem 0;
    background: white;
}

.channel-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.channel-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.youtube-icon {
    font-size: 3rem;
    color: #ff0000;
}

.channel-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.btn-youtube {
    background: #ff0000;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-youtube:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

.videos-grid-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.btn-play {
    width: 60px;
    height: 60px;
    background: rgba(196, 154, 108, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-play:hover {
    transform: scale(1.1);
    background: #c49a6c;
}

.video-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid #c49a6c;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.video-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 0.9rem;
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 50px auto;
    background: #1a1a1a;
    border-radius: 15px;
    padding: 1.5rem;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 1;
}

.close-modal:hover {
    color: #c49a6c;
}

#modalVideoTitle {
    color: white;
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.no-videos-message {
    text-align: center;
    padding: 4rem;
    background: white;
    border-radius: 15px;
    border: 2px dashed #dee2e6;
}

.no-videos-message i {
    font-size: 4rem;
    color: #c49a6c;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Concept Page Styles */

/* Presentation */
.concept-presentation {
    padding: 4rem 0;
    background: white;
}

.presentation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.presentation-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.presentation-text .lead {
    font-size: 1.2rem;
    color: #c49a6c;
    margin-bottom: 1rem;
    font-weight: 500;
}

.presentation-text p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.8;
}

.presentation-image {
    position: relative;
}

.rounded-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.image-caption {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: #c49a6c;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(196, 154, 108, 0.3);
}

/* Criteria Section */
.criteria-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.criteria-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.criterion-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.criterion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.criterion-icon {
    width: 80px;
    height: 80px;
    background: rgba(196, 154, 108, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #c49a6c;
    font-size: 2rem;
}

.criterion-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.criterion-card p {
    color: #666;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    padding: 4rem 0;
    background: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 2rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #c49a6c;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 80px;
}

.timeline-number {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    background: #c49a6c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(196, 154, 108, 0.3);
}

.timeline-content {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    color: #c49a6c;
    margin-bottom: 0.5rem;
}

.timeline-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.timeline-stats span {
    background: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Rewards Section */
.rewards-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: white;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reward-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.reward-card.featured {
    background: rgba(196, 154, 108, 0.2);
    border: 2px solid #c49a6c;
    transform: scale(1.05);
}

.reward-icon {
    font-size: 2.5rem;
    color: #c49a6c;
    margin-bottom: 1rem;
}

.reward-card h3 {
    margin-bottom: 1rem;
}

.reward-card ul {
    list-style: none;
    margin: 1rem 0;
}

.reward-card li {
    margin-bottom: 0.5rem;
}

.total {
    font-weight: 700;
    color: #c49a6c;
    margin-top: 1rem;
}

/* Objectives Section */
.objectives-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.objective-item {
    text-align: center;
    padding: 1.5rem;
}

.objective-item i {
    font-size: 2.5rem;
    color: #c49a6c;
    margin-bottom: 1rem;
}

.objective-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.objective-item p {
    color: #666;
    line-height: 1.6;
}

/* Videos Page Styles */

.video-filters-section {
    background: #f8f9fa;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.youtube-channel-section {
    padding: 2rem 0;
    background: white;
}

.channel-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.channel-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.youtube-icon {
    font-size: 3rem;
    color: #ff0000;
}

.channel-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.btn-youtube {
    background: #ff0000;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-youtube:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

.videos-grid-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.btn-play {
    width: 60px;
    height: 60px;
    background: rgba(196, 154, 108, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-play:hover {
    transform: scale(1.1);
    background: #c49a6c;
}

.video-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid #c49a6c;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.video-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 0.9rem;
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 50px auto;
    background: #1a1a1a;
    border-radius: 15px;
    padding: 1.5rem;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 1;
}

.close-modal:hover {
    color: #c49a6c;
}

#modalVideoTitle {
    color: white;
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.no-videos-message {
    text-align: center;
    padding: 4rem;
    background: white;
    border-radius: 15px;
    border: 2px dashed #dee2e6;
}

.no-videos-message i {
    font-size: 4rem;
    color: #c49a6c;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .presentation-grid {
        grid-template-columns: 1fr;
    }
    
    .presentation-text {
        order: 2;
    }
    
    .presentation-image {
        order: 1;
    }
    
    .image-caption {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .reward-card.featured {
        transform: scale(1);
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .channel-info {
        flex-direction: column;
        text-align: center;
    }
    
    .channel-card {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-youtube {
        width: 100%;
        justify-content: center;
    }
    
    .modal-content {
        width: 95%;
        padding: 1rem;
        margin: 30px auto;
    }
}

/* Correction des couleurs de texte */
.candidate-info {
    color: #333; /* Texte sombre sur fond clair */
}

.candidate-info h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.candidate-bio {
    color: #555;
    line-height: 1.8;
}

.btn-profile {
    color: #c49a6c; /* Doré pour le lien */
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-profile:hover {
    color: #a67b4e;
    gap: 0.8rem;
}

/* Pour la grille des candidates */
.candidate-item h3 {
    color: #333;
    margin: 1rem 0 0.5rem;
}

.candidate-item p {
    color: #c49a6c;
    margin-bottom: 1rem;
}

.candidate-item .btn-small {
    color: white;
    background: #c49a6c;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.candidate-item .btn-small:hover {
    background: #a67b4e;
    transform: translateY(-2px);
}
																																		
																																		/* Dans style.css, ajoute : */
.btn-vote, 
.btn-vote-small, 
.btn-vote-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-vote {
    background: #c49a6c;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
}

.btn-vote:hover {
    background: #a67b4e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(196, 154, 108, 0.3);
    color: white;
}

.btn-vote-small {
    background: none;
    border: 1px solid #c49a6c;
    color: #c49a6c;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.btn-vote-small:hover {
    background: #c49a6c;
    color: white;
}

.btn-vote-large {
    background: #c49a6c;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Badge pour la candidate en tête */
.candidate-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #c49a6c 0%, #a67b4e 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 10;
}

.candidate-badge i {
    color: gold;
    font-size: 1rem;
}

/* Petites étoiles pour les votes dans la grille */
.candidate-votes-small {
    font-size: 0.85rem;
    color: #c49a6c;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.candidate-votes-small i {
    color: #ff4444;
    font-size: 0.8rem;
}



/* Section explication */
.explanation-section {
    padding: 1.5rem 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.explanation-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.explanation-icon {
    width: 60px;
    height: 60px;
    background: #c49a6c20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #c49a6c;
}

.explanation-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #1a3b5c;
}

.explanation-text p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.formula {
    font-family: monospace;
    background: #f0f0f0;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-size: 0.85rem;
}

.btn-learn-more {
    font-size: 0.85rem;
    color: #c49a6c;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
}

.btn-learn-more:hover {
    gap: 0.5rem;
    text-decoration: underline;
}

/* Performance stats */
.performance-stats {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    flex-wrap: wrap;
}

.perf-item {
    text-align: center;
    flex: 1;
}

.perf-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.perf-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.perf-item.highlight .perf-value {
    color: #c49a6c;
    font-size: 1.4rem;
}

/* Candidate performance badge */
.candidate-performance {
    font-size: 0.85rem;
    color: #c49a6c;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.candidate-performance i {
    font-size: 0.8rem;
}

/* View all button */
.view-all {
    text-align: center;
    margin-top: 2rem;
}

.btn-view-all-candidates {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 2px solid #c49a6c;
    color: #c49a6c;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-view-all-candidates:hover {
    background: #c49a6c;
    color: white;
    gap: 0.8rem;
}

/* Info section */
.info-section {
    padding: 2rem 0 3rem;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-box {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.info-box i {
    font-size: 2rem;
    color: #c49a6c;
    margin-bottom: 0.8rem;
}

.info-box h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #1a3b5c;
}

.info-box p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .explanation-card {
        flex-direction: column;
        text-align: center;
    }
    
    .performance-stats {
        justify-content: center;
    }
    
    .perf-item {
        min-width: 100px;
    }
}