/* ====================================
   ZIKA - OLYMPE CUP - FUTURISTIC ORGANIC CSS
   ==================================== */

:root {
    --olympe-accent: #FFD700;
    --olympe-accent-dim: rgba(255, 215, 0, 0.1);
    --olympe-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --olympe-gradient-gold: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --zika-green: #00ff00;
    --zika-bg: #0a0a0a;
    --zika-card: #1a1a1a;
}

/* Page principale compétitions - Design futuriste et organique */
.competitions-main-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    min-height: 100vh;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Header principal */
.comp-main-header {
    margin-bottom: 2rem;
}

.comp-main-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 2rem;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.comp-main-title-section {
    flex: 1;
    min-width: 300px;
}

.comp-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-shadow: 0 0 30px rgba(0, 255, 0, 0.5), 0 0 60px rgba(0, 255, 0, 0.3);
}

.comp-main-title i {
    color: var(--zika-green);
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.8));
    font-size: 0.9em;
}

.comp-main-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

/* Navigation rapide */
.comp-quick-nav {
    display: flex;
    gap: 0.75rem;
    flex-wrap: nowrap;
    margin-top: 1rem;
    justify-content: flex-start;
    align-items: center;
}

.comp-quick-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: 1;
    justify-content: center;
}

.comp-quick-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--zika-green);
    color: var(--zika-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.2);
}

.comp-quick-nav-btn i {
    font-size: 0.9em;
}


.comp-action-btn {
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    white-space: nowrap;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.comp-action-primary {
    background: linear-gradient(135deg, var(--zika-green) 0%, rgba(0, 255, 0, 0.7) 100%);
    color: var(--zika-bg);
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.3);
}

.comp-action-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 255, 0, 0.4);
}

.comp-action-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.comp-action-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Sections organiques */
.comp-section {
    margin-bottom: 5rem;
    padding: 3rem 0;
}

.comp-section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.comp-section-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.comp-icon-ongoing {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.1));
    color: #4CAF50;
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.comp-icon-upcoming {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2), rgba(255, 165, 0, 0.1));
    color: #FFA500;
    border: 2px solid rgba(255, 165, 0, 0.3);
}

.comp-icon-ended {
    background: linear-gradient(135deg, rgba(153, 153, 153, 0.2), rgba(153, 153, 153, 0.1));
    color: #999;
    border: 2px solid rgba(153, 153, 153, 0.3);
}

.comp-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}

.comp-section-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    margin: 0;
}

/* Grille de cartes */
.comp-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* Carrousel de compétitions - Version simple */
.comp-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 2rem 0;
    overflow: hidden;
}

.comp-carousel-container {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    padding-bottom: 1rem;
}

.comp-carousel-container::-webkit-scrollbar {
    height: 8px;
}

.comp-carousel-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.comp-carousel-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.comp-carousel-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.comp-carousel-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding: 0.5rem 0;
}

.comp-carousel-slide {
    flex: 0 0 auto;
    width: 450px;
    min-width: 450px;
}

.comp-carousel-btn {
    display: none;
}

.comp-carousel-indicators {
    display: none;
}

/* Cartes compétitions - Design organique */
.comp-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.comp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--zika-green), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.comp-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 255, 0, 0.1);
}

.comp-card:hover::before {
    opacity: 1;
}

.comp-card-image-wrapper {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
}

.comp-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
}

.comp-card:hover .comp-card-image {
    transform: scale(1.05);
}

.comp-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.comp-card-image-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
}

.comp-card-logo-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    max-width: 120px;
    max-height: 80px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comp-card-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.comp-card-logo-placeholder {
    width: 100px;
    height: 100px;
    max-width: 80%;
    max-height: 80%;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.comp-card-status-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.comp-card-content {
    padding: 2rem;
}

.comp-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.comp-card-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.comp-card-prizes {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--olympe-accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.comp-card-prizes i {
    font-size: 1rem;
}

.comp-card-dates {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.comp-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.comp-empty-state i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    display: block;
}

.comp-empty-state p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
    margin: 0;
}

/* Container */
.olympe-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: 100vh;
}

/* Header moderne */
.olympe-header-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    gap: 2rem;
}

.olympe-title-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    letter-spacing: -0.02em;
}

.olympe-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    font-weight: 400;
}

.olympe-create-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.olympe-create-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Featured Competition - Glass style */
.olympe-featured {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.olympe-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--olympe-gradient-gold);
}

.olympe-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    color: var(--olympe-accent);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.olympe-featured-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 1rem 0;
    letter-spacing: -0.01em;
}

.olympe-featured-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.olympe-prizes, .olympe-dates {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 1rem 0;
}

.olympe-prizes i {
    color: var(--olympe-accent);
}

.olympe-dates i {
    color: rgba(255, 255, 255, 0.5);
}

.olympe-featured-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Empty state */
.olympe-empty-featured {
    text-align: center;
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    margin-bottom: 4rem;
}

.olympe-empty-featured i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.olympe-empty-featured h3 {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin: 1rem 0 0.5rem;
}

.olympe-empty-featured p {
    color: rgba(255, 255, 255, 0.4);
}

/* Sections */
.olympe-section {
    margin-bottom: 4rem;
}

.olympe-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.olympe-section-title i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.25rem;
}

/* Grid */
.olympe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

/* Cards modernes */
.olympe-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.olympe-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.olympe-card-image-wrapper {
    width: 100%;
    height: 200px;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.olympe-card-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    object-fit: cover;
}

.olympe-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
    gap: 1rem;
}

.olympe-card-image-placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
}

.olympe-card-image-placeholder i.fa-trophy {
    display: none;
}

.olympe-card-image-placeholder i.fa-fire {
    color: var(--zika-green);
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.5));
}

.olympe-card-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 5;
}

.olympe-card-content {
    padding: 2rem;
}

.olympe-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.olympe-card-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.olympe-card-prizes {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #FFD700;
    margin-bottom: 1rem;
    font-weight: 600;
    padding: 0.5rem 0;
}

.olympe-card-prizes i {
    color: #FFD700;
    font-size: 1rem;
}

.olympe-card-dates {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem;
}

.olympe-card-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Logo styles */
.olympe-card-logo-overlay {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: 60px;
    height: 45px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    padding: 0.35rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.olympe-card-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.olympe-card-logo-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 6px;
    padding: 0.35rem;
    overflow: hidden;
}

.olympe-card-logo-placeholder {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.olympe-card-logo-top {
    max-width: 70px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem;
}

.olympe-card-logo-small {
    max-width: 80px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Taille des logos sur PC (desktop) */
@media (min-width: 769px) {
    .olympe-card-logo-overlay {
        width: 80px;
        height: 60px;
        padding: 0.5rem;
        border-radius: 8px;
    }
    
    .olympe-card-logo-wrapper {
        width: 80px;
        height: 80px;
        padding: 0.5rem;
        border-radius: 8px;
    }
    
    .olympe-card-logo-top {
        max-width: 90px;
        max-height: 65px;
        padding: 0.5rem;
    }
}

/* Bouton danger */
.olympe-btn-danger {
    background: rgba(255, 0, 51, 0.15);
    color: #ff0033;
    border: 1px solid rgba(255, 0, 51, 0.3);
}

.olympe-btn-danger:hover {
    background: rgba(255, 0, 51, 0.25);
    border-color: rgba(255, 0, 51, 0.5);
    transform: translateY(-2px);
}

/* Boutons modernes */
.olympe-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.olympe-btn-primary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.olympe-btn-primary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.olympe-btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.olympe-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.olympe-btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.olympe-btn-outline:hover {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.15);
}

.olympe-btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: none;
}

.olympe-btn-ghost:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.olympe-btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Popup moderne */
.olympe-popup {
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.olympe-popup-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.olympe-popup-title i {
    color: var(--olympe-accent);
}

.olympe-popup-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.olympe-popup-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--olympe-accent);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.olympe-popup-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.olympe-popup-prizes, .olympe-popup-dates {
    color: rgba(255, 255, 255, 0.8);
    margin: 1rem 0;
}

.olympe-popup-rules {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.olympe-popup-rules strong {
    color: #fff;
}

.olympe-popup-rules p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.75rem;
    line-height: 1.6;
}

.olympe-popup-social {
    display: flex;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.olympe-popup-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.olympe-popup-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

/* Formulaire moderne */
.olympe-form-group {
    margin-bottom: 1.5rem;
}

.olympe-form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.olympe-form-group input,
.olympe-form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.olympe-form-group input:focus,
.olympe-form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.olympe-form-group small {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.olympe-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.olympe-form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Historique */
.olympe-winner {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.olympe-winner h3 {
    color: var(--olympe-accent);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.olympe-winner-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0.5rem 0;
}

.olympe-ranking-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.olympe-top3 {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
}

.olympe-ranking-pos {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    min-width: 60px;
    text-align: center;
}

.olympe-ranking-cover {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.olympe-ranking-info {
    flex: 1;
}

.olympe-ranking-title {
    color: #fff;
    font-weight: 600;
}

.olympe-ranking-artist {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.olympe-ranking-votes {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--olympe-accent);
}

/* Date Picker Styles */
.olympe-popup-large {
    max-width: 900px;
    max-height: 90vh;
}

.olympe-date-picker-container {
    margin: 1.5rem 0;
    max-height: 500px;
    overflow-y: auto;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.olympe-date-month-group {
    margin-bottom: 2rem;
}

.olympe-date-month-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.olympe-date-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
}

.olympe-date-cell {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.olympe-date-cell:hover:not(.olympe-date-past):not(.olympe-date-blocked) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.olympe-date-day-name {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.olympe-date-day-num {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.olympe-date-past {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.02);
}

.olympe-date-past .olympe-date-day-num,
.olympe-date-past .olympe-date-day-name {
    color: rgba(255, 255, 255, 0.2);
}

.olympe-date-blocked {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(255, 0, 51, 0.15);
    border-color: rgba(255, 0, 51, 0.4);
    position: relative;
}

.olympe-date-blocked .olympe-date-day-num,
.olympe-date-blocked .olympe-date-day-name {
    color: rgba(255, 0, 51, 0.7);
}

.olympe-date-blocked-icon {
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 1rem;
    color: #ff0033;
    font-weight: bold;
    z-index: 10;
    text-shadow: 0 0 4px rgba(255, 0, 51, 0.5);
}

.olympe-date-selected {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

.olympe-date-selected .olympe-date-day-num {
    color: var(--olympe-accent);
    font-weight: 700;
}

.olympe-date-start {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.1));
    border-color: var(--olympe-accent);
    border-width: 2px;
}

.olympe-date-start::before {
    content: 'Début';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    color: var(--olympe-accent);
    font-weight: 600;
    white-space: nowrap;
}

.olympe-date-end {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.3));
    border-color: var(--olympe-accent);
    border-width: 2px;
}

.olympe-date-end::after {
    content: 'Fin';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    color: var(--olympe-accent);
    font-weight: 600;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .olympe-container {
        padding: 1rem;
    }
    
    .olympe-title-section h1 {
        font-size: 2.5rem;
    }
    
    .olympe-header-page {
        flex-direction: column;
        align-items: stretch;
    }
    
    .olympe-create-btn {
        width: 100%;
        justify-content: center;
    }
    
    .olympe-featured {
        padding: 2rem 1.5rem;
    }
    
    .olympe-featured-title {
        font-size: 2rem;
    }
    
    .olympe-grid {
        grid-template-columns: 1fr;
    }
    
    .olympe-form-row {
        grid-template-columns: 1fr;
    }
    
    .olympe-popup {
        padding: 2rem 1.5rem;
    }
    
    .olympe-date-grid {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        gap: 0.4rem;
    }
    
    .olympe-date-cell {
        padding: 0.4rem;
    }
    
    .olympe-date-day-num {
        font-size: 0.95rem;
    }
    
    .olympe-date-day-name {
        font-size: 0.65rem;
    }
    
    .my-comp-card-content {
        padding: 1.5rem;
    }
    
    .my-comp-actions {
        flex-direction: column;
    }
    
    .my-comp-actions .olympe-btn {
        width: 100%;
    }
}

/* ====================================
   MES COMPÉTITIONS - STYLES
   ==================================== */

.my-comp-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
}

.my-comp-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.my-comp-card-image {
    width: 100%;
    height: 200px;
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
}

.my-comp-logo-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    max-width: 120px;
    max-height: 80px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 0.5rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-comp-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.my-comp-logo-header {
    max-width: 100px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    margin-right: 1rem;
    flex-shrink: 0;
}

.my-comp-card-content {
    padding: 2rem;
}

.my-comp-header {
    margin-bottom: 1.5rem;
}

.my-comp-header-left {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.my-comp-status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    white-space: nowrap;
}

.my-comp-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    flex: 1;
}

.my-comp-desc {
    color: rgba(255, 255, 255, 0.7);
    margin: 0.75rem 0 0 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.my-comp-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.my-comp-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.my-comp-info-item i {
    color: rgba(255, 255, 255, 0.4);
}

.my-comp-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Tableau de bord compétition */
.my-comp-dashboard {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.my-comp-dashboard-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.my-comp-dashboard-title i {
    color: var(--zika-green);
}

.my-comp-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.my-comp-stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.my-comp-stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.my-comp-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.my-comp-stat-content {
    flex: 1;
    min-width: 0;
}

.my-comp-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.my-comp-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.my-comp-stat-sublabel {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.my-comp-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.my-comp-stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.my-comp-stat-item i {
    font-size: 1.1rem;
}

.my-comp-stat-item strong {
    color: #fff;
    font-weight: 700;
    margin-right: 0.25rem;
}

/* Page Mes Compétitions */
.my-competitions-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    min-height: 100vh;
    width: 100%;
}

.my-comp-page-header {
    margin-bottom: 3rem;
    text-align: left;
}

.my-comp-page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    text-shadow: 0 0 30px rgba(0, 255, 0, 0.5), 0 0 60px rgba(0, 255, 0, 0.3);
}

.my-comp-page-title i {
    color: var(--zika-green);
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.8));
    font-size: 0.9em;
}

.my-comp-page-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin: 0;
}

.my-comp-participation-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.my-comp-participation-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.my-comp-participation-item i {
    font-size: 1.2rem;
}

.my-comp-participation-item strong {
    color: #fff;
    font-weight: 700;
    margin-left: 0.25rem;
}

.my-comp-position {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.my-comp-position strong {
    color: #FFD700;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .my-comp-header-left {
        flex-direction: column;
    }
    
    .my-comp-logo-header {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .my-comp-info {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .olympe-card-image-wrapper {
        height: 150px;
        min-height: 150px;
    }
    
    .olympe-card-image {
        height: 100%;
    }
}

/* ====================================
   PAGE DÉTAIL COMPÉTITION - STARTUP TECH
   ==================================== */

.competition-detail-page {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
}

.comp-detail-hero {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.comp-detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.comp-detail-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 2rem;
}

.comp-detail-hero-no-image {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    height: 300px;
}

.comp-detail-back-btn {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comp-detail-back-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.comp-detail-logo {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 0 auto 1.5rem;
    display: block;
}

.comp-detail-logo-large {
    width: 150px;
    height: 150px;
    border-radius: 24px;
    object-fit: cover;
    border: 3px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 0 auto 1.5rem;
    display: block;
}

.comp-detail-status-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.comp-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.comp-detail-header {
    text-align: center;
    margin-bottom: 3rem;
}

.comp-detail-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 1rem 0;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 215, 0, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comp-detail-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.comp-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
}

.comp-detail-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comp-detail-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.comp-detail-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comp-detail-section-title i {
    color: var(--olympe-accent);
}

.comp-detail-prizes {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.comp-detail-dates {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comp-detail-date-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.comp-detail-date-item strong {
    color: var(--olympe-accent);
    display: block;
    margin-bottom: 0.25rem;
}

.comp-detail-rules {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    white-space: pre-line;
}

.comp-detail-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.comp-detail-actions-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comp-detail-action-btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.comp-detail-action-primary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.comp-detail-action-primary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.comp-detail-action-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.comp-detail-action-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.comp-detail-action-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.comp-detail-action-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

.comp-detail-action-danger {
    background: rgba(255, 0, 51, 0.15);
    color: #ff0033;
    border: 1px solid rgba(255, 0, 51, 0.3);
}

.comp-detail-action-danger:hover {
    background: rgba(255, 0, 51, 0.25);
    border-color: rgba(255, 0, 51, 0.5);
}

.comp-detail-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comp-social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.comp-social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #fff;
}

/* Statistiques */
.comp-detail-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.comp-stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.comp-stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.comp-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.comp-stat-content {
    flex: 1;
}

.comp-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.comp-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.comp-detail-manage-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(255, 215, 0, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.comp-detail-manage-btn:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(255, 215, 0, 0.3));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
}

/* Upload d'images */
.upload-image-container {
    margin-top: 0.5rem;
}

.upload-image-preview {
    min-height: 120px;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.upload-preview-success {
    position: relative;
    width: 100%;
    height: 200px;
}

.upload-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.upload-remove-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 36px;
    height: 36px;
    background: rgba(255, 0, 51, 0.8);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.upload-remove-btn:hover {
    background: rgba(255, 0, 51, 1);
    transform: scale(1.1);
}

.upload-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.upload-loading .spinner {
    margin-bottom: 1rem;
}

.upload-error {
    padding: 1.5rem;
    text-align: center;
    color: #ff0033;
}

.upload-error i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Responsive - Page principale */
@media (max-width: 968px) {
    .competitions-main-page {
        padding: 2rem 1rem;
    }
    
    .comp-main-header {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 3rem;
    }
    
    .comp-main-actions {
        width: 100%;
    }
    
    .comp-action-btn {
        flex: 1;
        justify-content: center;
    }
    
    .comp-section {
        margin-bottom: 3rem;
        padding: 2rem 0;
    }
    
    .comp-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .comp-section-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .comp-section-title {
        font-size: 2rem;
    }
    
    .comp-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comp-card-image-wrapper {
        height: 180px;
    }
}

@media (max-width: 968px) {
    .comp-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .comp-detail-sidebar {
        position: static;
    }
    
    .comp-detail-title {
        font-size: 2rem;
    }
    
    .comp-detail-hero {
        height: 300px;
    }
    
    .comp-detail-hero-no-image {
        height: 250px;
    }
    
    .comp-detail-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .comp-stat-card {
        padding: 1rem;
    }
    
    .comp-stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .comp-stat-value {
        font-size: 1.5rem;
    }
}

/* ====================================
   PAGE CRÉATION COMPÉTITION
   ==================================== */
.comp-create-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    min-height: 100vh;
}

.comp-create-header {
    margin-bottom: 3rem;
}

.comp-create-back-btn {
    margin-bottom: 2rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.comp-create-back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.comp-create-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, var(--zika-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.comp-create-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin: 0;
}

.comp-create-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.comp-form-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.comp-form-section:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 255, 0, 0.2);
}

.comp-form-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 2rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comp-form-section-title i {
    color: var(--zika-green);
}

.comp-form-group {
    margin-bottom: 2rem;
}

.comp-form-group:last-child {
    margin-bottom: 0;
}

.comp-form-group label {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.comp-form-group input[type="text"],
.comp-form-group input[type="url"],
.comp-form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.comp-form-group input[type="text"]:focus,
.comp-form-group input[type="url"]:focus,
.comp-form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--zika-green);
    box-shadow: 0 0 0 3px rgba(0, 255, 0, 0.1);
}

.comp-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.comp-form-group input[type="text"] + input[type="text"] {
    margin-top: 0.75rem;
}

.comp-form-hint {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comp-form-hint i {
    color: var(--zika-green);
}

.comp-date-picker-container {
    margin-top: 1rem;
}

.comp-upload-btn {
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.comp-upload-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.comp-form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.comp-submit-btn {
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--zika-green) 0%, rgba(0, 255, 0, 0.7) 100%);
    border: none;
    border-radius: 16px;
    color: var(--zika-bg);
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.3);
}

.comp-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 255, 0, 0.4);
}

.comp-cancel-btn {
    padding: 1.25rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comp-cancel-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .comp-create-page {
        padding: 1.5rem 1rem;
    }
    
    .comp-create-back-btn {
        margin-bottom: 1.5rem;
    }
    
    .comp-form-section {
        padding: 1.5rem;
    }
    
    .comp-form-actions {
        flex-direction: column;
    }
    
    .comp-submit-btn,
    .comp-cancel-btn {
        width: 100%;
        justify-content: center;
    }
    
    .comp-main-actions {
        flex-direction: row;
        flex-wrap: nowrap;
    }
    
    .comp-action-btn {
        flex: 1;
        justify-content: center;
    }
    
    /* Améliorations responsive pour la page principale */
    .competitions-main-page {
        padding: 2rem 1rem;
    }
    
    .comp-main-title {
        font-size: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .comp-main-title i {
        font-size: 1.5rem;
    }
    
    .comp-main-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .comp-section {
        margin-bottom: 3rem;
    }
    
    .comp-section-header {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }
    
    .comp-section-title {
        font-size: 1.75rem;
    }
    
    .comp-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comp-card {
        margin: 0;
    }
    
    .comp-quick-nav {
        flex-direction: row;
        gap: 0.5rem;
        justify-content: space-between;
        flex-wrap: nowrap;
        margin-top: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .comp-quick-nav-btn {
        flex: 1;
        min-width: 0;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        justify-content: center;
    }
    
    .comp-quick-nav-btn span {
        font-size: 0.75rem;
    }
    
    .comp-main-actions {
        margin-bottom: 1rem;
    }
    
    .comp-section {
        margin-top: 1rem;
        padding-top: 1.5rem;
    }
    
    .comp-quick-nav {
        justify-content: flex-start;
    }
    
    /* Carrousel responsive */
    .comp-carousel-slide {
        width: 300px;
        min-width: 300px;
    }
    
    .comp-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .comp-carousel-slide {
        width: 280px;
        min-width: 280px;
    }
    
    .comp-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ====================================
   BOUTON "VOIR TOUT" ET POPUP
   ==================================== */

.comp-view-all-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
}

.comp-view-all-btn {
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.comp-view-all-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--zika-green);
    color: var(--zika-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.2);
}

.comp-view-all-btn i {
    font-size: 0.9em;
}

/* Popup pour afficher toutes les compétitions */
.comp-all-popup {
    max-width: 1200px;
    max-height: 90vh;
    width: 95%;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.comp-all-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.comp-all-popup-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comp-all-popup-title i {
    color: var(--zika-green);
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.5));
}

.comp-all-popup-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.1rem;
}

.comp-all-popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: rotate(90deg);
}

.comp-all-popup-content {
    padding: 2rem 2.5rem;
    overflow-y: auto;
    flex: 1;
}

.comp-all-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .comp-all-popup {
        width: 98%;
        max-height: 95vh;
    }
    
    .comp-all-popup-header {
        padding: 1.5rem;
    }
    
    .comp-all-popup-title {
        font-size: 1.5rem;
    }
    
    .comp-all-popup-content {
        padding: 1.5rem;
    }
    
    .comp-all-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comp-view-all-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ====================================
   POPUP DE PAIEMENT COMPÉTITION
   ==================================== */

/* Styles pour le contenu du popup de paiement */
.popup-content .competition-payment-content,
.competition-payment-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%) !important;
    border-radius: 20px !important;
    padding: 2.5rem !important;
    max-width: 600px !important;
    width: 100% !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    position: relative !important;
    border: 1px solid rgba(43, 255, 0, 0.2) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(43, 255, 0, 0.1) !important;
    color: #fff !important;
}

.competition-payment-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.competition-payment-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.competition-payment-content h2,
.popup-content .competition-payment-content h2 {
    color: #fff !important;
    font-size: 1.8rem !important;
    margin: 0 0 1.5rem 0 !important;
    font-weight: 700 !important;
}

.competition-payment-content h3,
.popup-content .competition-payment-content h3 {
    color: #fff !important;
    font-size: 1.3rem !important;
    margin: 1.5rem 0 1rem 0 !important;
    font-weight: 600 !important;
}

.payment-rules-content {
    background: rgba(0, 0, 0, 0.3) !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    max-height: 300px !important;
    overflow-y: auto !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.payment-rules-content p {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6 !important;
    margin: 0.5rem 0 !important;
}

.competition-payment-btn-primary {
    background: linear-gradient(135deg, #2bff00 0%, #00cc00 100%) !important;
    color: #000 !important;
    border: none !important;
    padding: 1rem 2rem !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    margin-top: 1rem !important;
}

.competition-payment-btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(43, 255, 0, 0.3) !important;
}

.competition-payment-btn-primary:active {
    transform: translateY(0) !important;
}

.payment-status-success {
    background: rgba(43, 255, 0, 0.1) !important;
    border: 1px solid rgba(43, 255, 0, 0.3) !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    text-align: center !important;
}

.payment-status-success i {
    font-size: 3rem !important;
    color: #2bff00 !important;
    margin-bottom: 1rem !important;
}

.payment-status-success p {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.6 !important;
}

#stripe-buy-button-container {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

#payment-confirmation-section {
    animation: slideIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styles supplémentaires pour le popup de paiement */
.popup-content .competition-payment-content p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.popup-content .competition-payment-content {
    margin: 0 !important;
}

/* Surcharger les styles par défaut du popup */
.popup-content .competition-payment-content * {
    box-sizing: border-box;
}

.popup-content .competition-payment-content p:not(.payment-status-success p) {
    color: rgba(255, 255, 255, 0.8) !important;
}

@media (max-width: 768px) {
    .competition-payment-content,
    .popup-content .competition-payment-content {
        padding: 1.5rem !important;
        max-width: 95% !important;
    }
    
    .competition-payment-content h2,
    .popup-content .competition-payment-content h2 {
        font-size: 1.5rem !important;
    }
    
    .payment-rules-content {
        max-height: 200px !important;
    }
}