/* Artiste Amateur Show - Style Néon Moderne V2 */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Righteous&family=Archivo+Black&family=Work+Sans:wght@300;400;600;700;900&display=swap');

:root {
    --neon-pink: #ff006e;
    --neon-blue: #00f5ff;
    --neon-purple: #8338ec;
    --neon-yellow: #ffbe0b;
    --neon-green: #3bff6c;
    --dark-bg: #0a0a0f;
    --dark-card: #1a1a28;
    --dark-surface: #252538;
    --text-light: #ffffff;
    --text-muted: #a8a8b8;
    
    /* Aliases pour compatibilité */
    --primary-color: #ff006e;
    --primary-light: #ff2d8a;
    --primary-dark: #d6005c;
    --primary-rgb: 255, 0, 110;
    --secondary-color: #8338ec;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --card-bg: #1a1a28;
    --card-hover: #252538;
    --light-text: #ffffff;
    --muted-text: #a8a8b8;
    --border-color: #2a2a3e;
    --success: #3bff6c;
    --danger: #ff006e;
    --warning: #ffbe0b;
    --gong-color: #ff006e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Work Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 50%, rgba(131, 56, 236, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 0, 110, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(0, 245, 255, 0.1) 0%, transparent 50%);
    animation: bgShift 20s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 2px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

/* Navbar */
.navbar {
    background: rgba(26, 26, 40, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(255, 0, 110, 0.5);
}

.site-logo {
    height: 160px;
    width: auto;
    max-width: 400px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 110, 0.5));
    transition: all 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.8));
}

@media (max-width: 768px) {
    .site-logo {
        height: 140px;
        max-width: 360px;
    }
}

@media (max-width: 576px) {
    .site-logo {
        height: 120px;
        max-width: 300px;
    }
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--text-light);
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-pink);
    transition: width 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--neon-pink);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    margin-bottom: 4rem;
}

.hero-slide {
    height: 500px;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.7), rgba(255, 0, 110, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item .hero-slide h1,
.hero-slide h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: var(--neon-pink);
    transform: scale(1.3);
    box-shadow: 0 0 20px var(--neon-pink);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--neon-pink);
    transform: translateY(-50%) scale(1.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content .lead {
    font-size: 1.35rem;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    opacity: 0.7;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
}

/* Hero Section (fallback) */
.hero-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231B9C85' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: var(--muted-text);
    position: relative;
}

/* Cards */
.card {
    background: var(--dark-card);
    border: 2px solid rgba(255, 0, 110, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin: 2rem auto;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-pink);
    box-shadow: 0 20px 60px rgba(255, 0, 110, 0.4), 
                0 0 30px rgba(255, 0, 110, 0.2);
}

.card-header {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.2), rgba(255, 0, 110, 0.2));
    border-bottom: 2px solid rgba(255, 0, 110, 0.3);
    color: var(--text-light);
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.card-body {
    color: var(--text-muted);
    background: var(--dark-card);
}

.card-title {
    color: var(--text-light);
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

/* Spectacle Cards - Nouvelle version améliorée */
.spectacle-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: var(--dark-card);
    border: 2px solid rgba(255, 0, 110, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.spectacle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.05) 0%, rgba(131, 56, 236, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.spectacle-card:hover::before {
    opacity: 1;
}

.spectacle-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 0, 110, 0.3);
    box-shadow: 
        0 20px 50px rgba(255, 0, 110, 0.2),
        0 0 30px rgba(131, 56, 236, 0.1);
}

.hover-lift {
    position: relative;
}

.spectacle-image-hover {
    transition: all 0.4s ease;
}

.spectacle-card:hover .spectacle-image-hover {
    filter: brightness(1.1) contrast(1.1);
    transform: scale(1.05);
}

.spectacle-placeholder {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)) !important;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}

.spectacle-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 0, 110, 0.05) 100%);
    pointer-events: none;
    z-index: 2;
}

.spectacle-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--primary-color), #ff2d8a);
    color: white;
    padding: 12px 18px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(255, 0, 110, 0.4);
    z-index: 10;
    animation: dateFloat 3s ease-in-out infinite;
}

@keyframes dateFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
}

.spectacle-date .day {
    font-size: 1.75rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.spectacle-date .month {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Badges de statut */
.badge {
    font-weight: 500;
    padding: 0.5em 1em;
    border-radius: 20px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.badge-inscription-ouverte {
    background: linear-gradient(135deg, #4ade80, #22c55e) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-complet {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.badge-planifie {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.bg-success {
    background: linear-gradient(135deg, #4ade80, #22c55e) !important;
}

.bg-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.bg-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    color: white !important;
}

/* Boutons */
.btn {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: white;
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
    border: none;
}

.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.6);
    color: white;
}

.btn-outline-primary {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Cartes Promo */
.promo-card-wrapper {
    height: 100%;
}

.promo-card-link {
    display: block;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.promo-card-inner {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    position: relative;
}

.promo-card-link:hover .promo-card-inner {
    transform: translateY(-8px);
    border-color: var(--neon-pink);
    box-shadow: 0 16px 32px rgba(255, 0, 110, 0.25),
                0 0 30px rgba(255, 0, 110, 0.15),
                inset 0 0 20px rgba(255, 0, 110, 0.05);
}

.promo-blob {
    position: absolute;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    filter: blur(40px);
    animation: promo-float 6s ease-in-out infinite;
}

.promo-blob-1 {
    animation-delay: 0s;
}

.promo-blob-2 {
    animation-delay: 3s;
}

@keyframes promo-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -10px); }
}

.promo-icon {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.promo-card-link:hover .promo-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 28px rgba(255, 0, 110, 0.5) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-outline-light {
    border-color: var(--light-text);
    color: var(--light-text);
}

.btn-outline-light:hover {
    background-color: var(--light-text);
    color: var(--dark-bg);
}

/* Bouton GONG */
.btn-gong {
    background: linear-gradient(135deg, var(--danger) 0%, #dc2626 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
    transition: all 0.3s ease;
    animation: pulse-gong 2s infinite;
}

.btn-gong:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.6);
}

@keyframes pulse-gong {
    0%, 100% { box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 10px 50px rgba(239, 68, 68, 0.7); }
}

/* Formulaires */
.form-control, .form-select {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--light-text);
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background-color: var(--card-hover);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(27, 156, 133, 0.2);
    color: var(--light-text);
}

.form-control::placeholder {
    color: var(--muted-text);
}

.form-label {
    color: var(--light-text);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Tables */
.table {
    color: var(--muted-text);
    --bs-table-bg: transparent;
    --bs-table-hover-bg: var(--card-hover);
}

.table thead th {
    color: var(--light-text);
    border-bottom-color: var(--border-color);
    font-weight: 600;
}

.table td, .table th {
    border-color: var(--border-color);
    padding: 1rem;
}

.table-hover tbody tr:hover {
    background-color: var(--card-hover);
}

/* Section Calendrier */
.calendar-section {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
}

/* Artiste Card */
.artiste-card {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.artiste-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.artiste-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--darker-bg) !important;
    border-top: 1px solid var(--border-color);
    color: var(--muted-text);
}

footer h5, footer .h5 {
    color: var(--light-text);
    font-weight: 600;
}

footer a {
    color: var(--muted-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    color: var(--light-text);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Alerts */
.alert {
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
}

.alert-success {
    background-color: rgba(27, 156, 133, 0.2);
    color: var(--primary-light);
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.alert-warning {
    background-color: rgba(245, 158, 11, 0.2);
    color: #fcd34d;
}

/* Stats Cards */
.stat-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-hover) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-card .stat-label {
    color: var(--muted-text);
    font-size: 0.9rem;
}

/* Vote Stars */
.vote-stars {
    font-size: 2rem;
    color: var(--warning);
}

/* Container override pour fond sombre */
.container-fluid {
    padding: 2rem;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--muted-text);
}

/* Calendrier des spectacles - Style inspiré de lebordel.ca */
.month-header {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.spectacle-card-horizontal {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.spectacle-card-horizontal:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(27, 156, 133, 0.2);
    border-color: var(--primary-color);
}

.spectacle-date-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.date-content {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.date-content .day-name {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    font-weight: 600;
}

.date-content .day-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin: 0.2rem 0;
}

.date-content .month-name {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.spectacle-info {
    background-color: var(--card-bg);
}

.spectacle-title {
    color: var(--light-text);
    font-weight: 600;
    font-size: 1.5rem;
}

.spectacle-meta {
    color: var(--muted-text);
    font-size: 0.95rem;
}

.spectacle-meta i {
    color: var(--primary-color);
}

.spectacle-description {
    color: var(--muted-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.spectacle-stats {
    font-size: 0.9rem;
    color: var(--muted-text);
}

.spectacle-stats i {
    font-size: 1rem;
}

.spectacle-actions {
    background-color: rgba(27, 156, 133, 0.05);
    border-left: 1px solid var(--border-color);
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.actions-content {
    width: 100%;
    text-align: center;
}

.price-tag {
    text-align: center;
}

.price-tag .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-block {
    width: 100%;
    display: block;
}

/* Text utilities */
.text-muted {
    color: var(--muted-text) !important;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .spectacle-date-badge {
        min-width: 100px;
    }
    
    .date-content .day-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .spectacle-card .card-img-top {
        height: 180px;
    }

    .btn {
        padding: 10px 20px;
    }
    
    .spectacle-card-horizontal .row {
        flex-direction: column;
    }
    
    .spectacle-date-badge {
        min-width: 100%;
        padding: 1rem;
    }
    
    .date-content {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }
    
    .date-content .day-number {
        font-size: 2rem;
    }
    
    .spectacle-actions {
        min-width: 100%;
        border-left: none;
        border-top: 1px solid var(--border-color);
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }

    .container-fluid {
        padding: 1rem;
    }
    
    .spectacle-title {
        font-size: 1.2rem;
    }

    .month-header {
        font-size: 1.5rem;
    }
}

/* ============================
   SPECTACLES CAROUSEL
   ============================ */
.spectacles-carousel-container {
    position: relative;
}

.spectacles-carousel {
    display: flex;
    align-items: stretch;
    transition: transform 0.5s ease;
    gap: 20px;
}

.spectacle-slide {
    flex: 0 0 55%;
    min-width: 0;
    padding: 0 10px 20px 10px;
    min-height: 680px;
}

@media (max-width: 768px) {
    .spectacle-slide {
        flex: 0 0 85%;
    }
}

.btn-carousel-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
}

.btn-carousel-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.btn-carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Dots indicateurs */
.spectacles-dots {
    margin-top: 20px;
}

.spectacles-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.spectacles-dots .dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

.spectacles-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Animation de slide */
.spectacle-slide {
    opacity: 0.5;
    transform: scale(0.95);
    transition: all 0.4s ease;
}

.spectacle-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Responsive ajustements */
@media (max-width: 767px) {
    .spectacles-carousel {
        gap: 10px;
    }

    .spectacle-slide {
        padding: 0 5px;
    }

    #spectacleCounter {
        display: none;
    }
}

/* ============================
   MODAL DE CONFIRMATION PERSONNALISÉ
   ============================ */
.confirm-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.confirm-modal {
    background: var(--dark-card);
    border: 2px solid rgba(255, 0, 110, 0.3);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(255, 0, 110, 0.3),
                0 0 40px rgba(131, 56, 236, 0.2);
    transform: scale(0.7);
    animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.1s;
}

@keyframes modalPop {
    to { 
        transform: scale(1); 
    }
}

.confirm-modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.confirm-modal-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.confirm-modal-icon.warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    animation: iconPulse 2s ease-in-out infinite;
}

.confirm-modal-icon.danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    animation: iconShake 0.5s ease;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes iconShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.confirm-modal-title {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    margin: 0;
}

.confirm-modal-body {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.confirm-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.confirm-modal-btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.confirm-modal-btn-cancel {
    background: var(--dark-surface);
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.confirm-modal-btn-cancel:hover {
    background: var(--card-hover);
    transform: translateY(-2px);
}

.confirm-modal-btn-confirm {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: white;
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.confirm-modal-btn-confirm:hover {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.5);
}

.confirm-modal-btn-confirm.danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.confirm-modal-btn-confirm.danger:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

@media (max-width: 576px) {
    .confirm-modal {
        padding: 1.5rem;
    }
    
    .confirm-modal-actions {
        flex-direction: column;
    }
    
    .confirm-modal-btn {
        width: 100%;
    }
}

