/* Configurer la police */
@font-face {
    font-family: "technocra";
    src: url(fonts/Technocra.otf); 
  }
  
/* Variables et reset */
:root {
    --primary-color: #00437A;
    --primary-light: #00FFFF;
    --primary-dark: #0a00b6;
    --secondary-color: #000E38;
    --background-color: #f5f5f5;
    --text-color: #333;
    --light-text: #fff;
    --border-color: #ddd;
    --success-color: #4caf50;
    --error-color: #f44336;
    --info-color: #2196f3;
    --warning-color: #ff9800;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

.hidden {
    display: none !important;
}

/* Layout et composants communs */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--primary-light);
    color: var(--secondary-color)
}

.btn-secondary {
    border-bottom: 2px solid var(--primary-color);
    padding: 5px;
    transition: 0.2s all ease-in-out;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    color: var(--light-text);
}

/* Header */
header {
    background-color: var(--primary-color);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo h1 {
    color: var(--light-text);
    font-size: 1.8rem;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--light-text);
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    background-color: var(--primary-light);
    color: var(--secondary-color)
}

.menu-btn:hover{
    cursor: pointer;
}

.user-menu{
    display: flex;
    position: fixed;
    z-index: 1;
    align-items: center;
    background-color: var(--primary-color);
    border-bottom-left-radius: 10px;
    right: 0px;
    top: -80px;
    padding: 20px;
    transition: 0.3s all ease-in-out;
}

.user-menu.active{
    top: 75px;
}

.user-menu a {
    color: var(--light-text);
}

#user-account {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;

}

#user-name, #token-balance {
    color: var(--light-text);
    padding: 3px;
    border-radius: 5px;
    transition: 0.2s all ease-in-out;
}

#token-balance:hover {
    color: var(--secondary-color);
    background-color: var(--light-text)
}

#logout-btn{
    padding: 3px;
    border-radius: 5px;
    transition: 0.2s all ease-in-out;
}

#logout-btn:hover{
    color: var(--secondary-color);
    background-color: var(--light-text)
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links, .footer-contact {
    margin-bottom: 30px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a, .footer-contact a {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover, .footer-contact a:hover {
    color: var(--light-text);
}

.social-media {
    margin-top: 15px;
    text-align: center;
}

.social-icon {
    margin-right: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    margin-top: 20px;
}

/* Page d'accueil */
/* Améliorations pour la page d'accueil */

/* Section Hero améliorée */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('Images/image\ acceuil.jpg');
    height: 90vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    position: relative;
    margin-bottom: 50px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,67,122,0.3) 0%, rgba(0,14,56,0.5) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    padding: 0 30px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
}

.hero-content h2 {
    font-size: 5rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.7);
    font-family: "technocra";
    letter-spacing: 0.15em; /* Espacement des lettres pour une meilleure lisibilité */
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
    font-weight: 300;
}

.hero-content .btn {
    padding: 15px 35px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.hero-content .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, var(--primary-light), var(--primary-color));
}

.hero-content .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease-out;
    z-index: -1;
}

.hero-content .btn:hover::after {
    transform: translate(-50%, -50%) scale(20);
}

/* Animation pour le hero */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Compteur à rebours améliorée */
.countdown-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-dark));
    padding: 30px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 20px 15px;
    border-radius: 15px;
    min-width: 120px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.countdown-value {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* Améliorations du carousel */
.carousel-section {
    padding: 50px 0;
    position: relative;
    background-color: #f9f9f9;
    margin-bottom: 50px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 2.5rem;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
    border-radius: 2px;
}

.carousel-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 50px;
    position: relative;
    overflow: visible;
    padding: 20px 0;
}

.carousel {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
    gap: 20px;
    width: 100%;
    padding: 20px 0;
}

.carousel-item {
    flex: 0 0 calc(25% - 15px);
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(0.95);
}

.carousel-item:hover {
    transform: scale(1.05) translateY(-15px);
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.carousel-item:hover::before {
    opacity: 0.6;
}

.carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.carousel-item:hover img {
    transform: scale(1.1);
}

.carousel-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    color: white;
    z-index: 2;
    transform: translateY(10px);
    transition: transform 0.5s ease;
}

.carousel-item:hover .carousel-item-content {
    transform: translateY(0);
}

.carousel-item-content h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-item-content p {
    font-size: 1rem;
    background-color: var(--primary-color);
    padding: 8px 15px;
    display: inline-block;
    border-radius: 30px;
    font-weight: 500;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.1s;
}

.carousel-item:hover .carousel-item-content p {
    transform: translateY(0);
    opacity: 1;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 104%;
    left: -2%;
    padding: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 5;
}

.nav-btn {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
    background: var(--primary-light);
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* Améliorations pour les features */
.features-section {
    padding: 80px 0;
    background-color: white;
}

.features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
}

.feature {
    flex: 1;
    min-width: 300px;
    padding: 40px 30px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
    z-index: 1;
}

.feature::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(0,67,122,0.03), rgba(0,255,255,0.05));
    z-index: -1;
    transition: height 0.5s ease;
}

.feature:hover::after {
    height: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.feature h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-light);
    border-radius: 3px;
}

.feature p {
    margin-bottom: 30px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature .btn-secondary {
    border: none;
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 20px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 0;
    display: inline-block;
}

.feature .btn-secondary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.feature .btn-secondary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.feature .btn-secondary:hover::after {
    height: 4px;
    background: var(--primary-light);
}

/* Responsive */
@media (max-width: 1200px) {
    .carousel-item {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 900px) {
    .hero-content h2 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.4rem;
    }
    
    .countdown-container {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 100px;
    }
    
    .carousel-item {
        flex: 0 0 calc(50% - 20px);
    }
    
    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .hero {
        height: 80vh;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-content .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .countdown-value {
        font-size: 2.5rem;
    }
    
    .carousel-item {
        flex: 0 0 calc(100% - 20px);
    }
    
    .carousel-nav {
        width: 108%;
        left: -4%;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .feature {
        padding: 30px 20px;
    }
    
    .feature h3 {
        font-size: 1.5rem;
    }
}

/* Styles supplémentaires pour le carousel */
.carousel.loading {
    opacity: 0;
    transform: translateY(20px);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.carousel-indicator:hover {
    background-color: var(--primary-light);
}

.carousel-item {
    opacity: 0.7;
    transform: scale(0.95);
    transition: all 0.5s ease;
}

.carousel-item.active {
    opacity: 1;
    transform: scale(1);
}

.nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Animation pour faire apparaître le carousel */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-container {
    animation: fadeInUp 1s ease-out;
}

/* Effet au survol des éléments du carousel */
.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    border-radius: 15px;
}

.carousel-item:hover::after {
    opacity: 0.2;
}

/* Animation de pulsation pour le bouton d'appel à l'action */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 67, 122, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 67, 122, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 67, 122, 0);
    }
}

.hero-content .btn {
    animation: pulse 2s infinite;
}

/* Styles pour les caractéristiques */
.feature-icon {
    position: relative;
    z-index: 1;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.feature:hover .feature-icon::before {
    opacity: 0.6;
}

.feature {
    overflow: hidden;
}

.feature::before {
    transform-origin: top left;
    transition: transform 0.6s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.feature:hover::before {
    transform: scaleX(1.05);
}

/* Amélioration du compteur */
.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.2)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.2;
    z-index: -1;
}

/* Effet de survol des items du menu */
nav ul li a {
    position: relative;
    overflow: hidden;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-light);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 80%;
}

/* Animation pour les boutons du carousel */
.nav-btn i {
    transition: transform 0.3s ease;
}

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

.nav-btn:first-child:hover i {
    transform: scale(1.2) translateX(-2px);
}

.nav-btn:last-child:hover i {
    transform: scale(1.2) translateX(2px);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Page Banque */
.bank-section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.bank-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.bank-message {
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn.pay{
    margin-top: 10px;
}

.bank-message p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.account-summary {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
}

.balance-info {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
    margin: 15px 0;
}

.balance-info p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.balance-info span {
    font-weight: bold;
    color: var(--primary-color);
}

.qr-code-container {
    text-align: center;
    margin-top: 30px;
}

#qrcode {
    margin: 20px auto;
    width: 200px;
    height: 200px;
    border: 1px solid var(--border-color);
    padding: 10px;
    background-color: white;
}

.action-panel {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
}

.add-tokens h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

.calculation-result {
    margin-top: 10px;
    font-size: 0.9rem;
}

.calculation-result span {
    font-weight: bold;
    color: var(--primary-color);
}

.payment-options {
    margin-top: 20px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.payment-method {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
}

.payment-method input {
    margin-right: 8px;
}

.transaction-history {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 25px;
}

.transaction-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.transaction-table th, .transaction-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.transaction-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* Page Inscription */
.registration-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.registration-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.registration-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.registration-info, .registration-form {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 25px;
}

.festival-details {
    margin: 20px 0;
    padding-left: 20px;
}

.festival-details li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.ticket-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.ticket-type {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-align: center;
}

.ticket-type.highlight {
    border-color: var(--primary-color);
    background-color: rgba(98, 0, 234, 0.05);
}

.price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 10px 0;
}

.registration-form input[type="text"],
.registration-form input[type="email"],
.registration-form input[type="tel"],
.registration-form input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

.hint {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
}

.ticket-selection {
    margin-top: 10px;
}

.ticket-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 10px;
    cursor: pointer;
}

.ticket-option input {
    margin-right: 10px;
}

.ticket-price {
    font-weight: bold;
    color: var(--primary-color);
}

.day-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.day-option {
    display: flex;
    align-items: center;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
}

.day-option input {
    margin-right: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
}

.checkbox-label input {
    margin-right: 10px;
}

.form-actions {
    margin-top: 30px;
}

/* Page Connexion */
.login-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.login-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.login-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.login-form, .login-info {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 25px;
}

.login-form input[type="email"],
.login-form input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

.form-links {
    margin-top: 20px;
    text-align: center;
}

.form-links a {
    color: var(--primary-color);
}

.login-info ul {
    margin-top: 20px;
    padding-left: 20px;
}

.login-info ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

/* Responsive */
@media (max-width: 900px) {
    header {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        padding-left: 25px;
        align-items: start;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        margin-bottom: 15px;
        margin-left: -10px;
    }
    
    .features, .registration-container, .login-container {
        flex-direction: column;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }

    #menu-btn {
        align-self: end;
    }

    .user-menu.active {
        top: 225px;
    }
}

@media (max-width: 600px) {
    nav ul {
        flex-wrap: wrap;
    }
    
    nav ul li {
        margin: 5px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

/* Lineup Page */
/* Amélioration de la section LineUp */
.lineup-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.lineup-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 2.8rem;
    position: relative;
    padding-bottom: 15px;
}

.lineup-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
    border-radius: 2px;
}

/* Améliorations des filtres */
.lineup-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.filter-group {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.filter-group:hover {
    background-color: #e9e9e9;
}

.filter-group label {
    margin-right: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.filter-group select {
    border: none;
    padding: 8px 12px;
    background-color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 67, 122, 0.2);
}

/* Améliorations de la grille d'artistes */
.lineup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.artist-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.artist-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,0.8) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artist-card:hover::before {
    opacity: 1;
}

.artist-image {
    position: relative;
    overflow: hidden;
    height: 280px; /* Hauteur fixe pour harmoniser les images */
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.artist-info {
    padding: 20px;
    position: relative;
    background: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.artist-info h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.artist-info p {
    margin-bottom: 8px;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

.artist-info p strong {
    color: var(--secondary-color);
}

/* Badge pour les jours */
.artist-info p:last-of-type {
    margin-top: auto;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
    display: inline-block;
    align-self: flex-start;
    margin-top: 10px;
}

/* Animation de survol pour les boutons */
.btn:hover {
    background-color: var(--primary-light);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
    .lineup-section h2 {
        font-size: 2.2rem;
    }
    
    .lineup-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 600px) {
    .lineup-section h2 {
        font-size: 1.8rem;
    }
    
    .lineup-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        justify-content: space-between;
    }
    
    .lineup-grid {
        grid-template-columns: 1fr;
    }
    
    .artist-image {
        height: 220px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.artist-card {
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}

.artist-card:nth-child(1) { animation-delay: 0.1s; }
.artist-card:nth-child(2) { animation-delay: 0.2s; }
.artist-card:nth-child(3) { animation-delay: 0.3s; }
.artist-card:nth-child(4) { animation-delay: 0.4s; }
.artist-card:nth-child(5) { animation-delay: 0.5s; }
.artist-card:nth-child(6) { animation-delay: 0.6s; }
.artist-card:nth-child(7) { animation-delay: 0.7s; }
.artist-card:nth-child(8) { animation-delay: 0.8s; }
.artist-card:nth-child(9) { animation-delay: 0.9s; }
.artist-card:nth-child(10) { animation-delay: 1s; }

/* Améliorations pour les boutons de filtres */
.filter-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    margin: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

/* En-tête explicative */
.lineup-intro {
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.lineup-intro p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Badge de genre */
.genre-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    background-color: var(--primary-light);
    color: var(--secondary-color);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}
/* Playlist Page */
.playlist-section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.playlist-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.playlist-intro {
    text-align: center;
    margin-bottom: 30px;
}

.playlist-player {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
}

.player-container {
    max-width: 600px;
    margin: 0 auto;
}

.track-info {
    text-align: center;
    margin-bottom: 20px;
}

.track-info h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.player-controls button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.player-controls button:hover {
    color: var(--primary-color);
}

.track-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.track-progress input[type="range"] {
    width: 100%;
    margin-bottom: 10px;
}

.time-display {
    font-size: 0.9rem;
    color: #666;
}

.playlist-tracks {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.track:last-child {
    border-bottom: none;
}

.track:hover {
    background-color: rgba(98, 0, 234, 0.05);
}

.track-details h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.track-details p {
    color: #666;
    font-size: 0.9rem;
}

.track-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-track {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.play-track:hover {
    color: var(--primary-color);
}

.track-duration {
    color: #666;
    font-size: 0.9rem;
}

.playlist-filters {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

@media (max-width: 600px) {
    .lineup-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-group {
        margin-bottom: 10px;
    }

    .lineup-grid {
        grid-template-columns: 1fr;
    }

    .playlist-player {
        padding: 15px;
    }

    .player-controls button {
        font-size: 20px;
    }
}

/* contact */

.contact-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-details, .social-media {
    margin-top: 20px;
}

.contact-details h4, .social-media h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    resize: vertical;
}

.contact-form .form-actions {
    margin-top: 20px;
    text-align: right;
}

/* Countdown Section */
.countdown-section {
    background-color: var(--secondary-color);
    color: white;
    padding: 20px 0;
    text-align: center;
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    min-width: 100px;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-light);
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 5px;
}

@media (max-width: 600px) {
    .countdown-container {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 70px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
}

/* Menu */

.menu-btn{
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 5px;
    border-radius: 5px;
    background-color: transparent;
    border: none;
    transition: 0.2s all ease-in-out;
}

.menu-btn:hover{
    background-color: var(--primary-light);
}

.menu-stroke{
    width: 25px;
    height: 4px;
    border-radius: 2px;
    border: 1px solid black;
    background-color: var(--light-text);
}

.menu-btn:hover > .menu-stroke{
    background-color: var(--secondary-color)
}

/* Social Button */ 
.wrapper {
    display: inline-flex;
    list-style: none;
    height: 120px;
    width: 100%;
    padding-top: 40px;
    font-family: "Poppins", sans-serif;
    justify-content: center;
  }
  
  .wrapper .icon {
    position: relative;
    background: #cfcece;
    border-radius: 50%;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #fff;
    color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .wrapper .icon:hover span,
  .wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
  }
  
  .wrapper .facebook:hover,
  .wrapper .facebook:hover .tooltip,
  .wrapper .facebook:hover .tooltip::before {
    background: #1877f2;
    color: #fff;
  }
  
  .wrapper .twitter:hover,
  .wrapper .twitter:hover .tooltip,
  .wrapper .twitter:hover .tooltip::before {
    background: #1da1f2;
    color: #fff;
  }
  
  .wrapper .instagram:hover,
  .wrapper .instagram:hover .tooltip,
  .wrapper .instagram:hover .tooltip::before {
    background: #e4405f;
    color: #fff;
  }
  
  /* Styles pour les modales d'artistes */
.artist-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content {
    background-color: white;
    border-radius: 15px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-50px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.close-modal:hover {
    transform: rotate(90deg);
    background-color: var(--primary-color);
}

.modal-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.modal-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, white, transparent);
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.modal-info {
    padding: 30px;
}

.modal-info h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.artist-bio {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.artist-bio h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.artist-social {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-radius: 30px;
    transition: all 0.3s ease;
    color: #333;
    font-weight: 500;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Style pour le message "Aucun résultat" */
.no-results-message {
    text-align: center;
    padding: 50px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    max-width: 500px;
}

.no-results-message i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.no-results-message p {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #555;
}

.reset-filters {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.reset-filters:hover {
    background-color: var(--primary-light);
    color: var(--secondary-color);
    transform: scale(1.05);
}

/* Responsivité pour les modales */
@media (min-width: 768px) {
    .modal-content {
        flex-direction: row;
        max-height: 80vh;
    }
    
    .modal-image {
        width: 40%;
        height: auto;
    }
    
    .modal-image::after {
        height: 0;
        width: 100px;
        right: 0;
        left: auto;
        top: 0;
        background: linear-gradient(to left, white, transparent);
    }
    
    .modal-info {
        width: 60%;
        overflow-y: auto;
        max-height: 80vh;
    }
}

@media (max-width: 767px) {
    .modal-image {
        height: 200px;
    }
    
    .modal-info h3 {
        font-size: 2rem;
    }
    
    .social-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Styles spécifiques pour chaque bannière */

/* Bannière de la page Banque (Cashless) */
.bank-banner.glitch-banner {
    background-image: url('/api/placeholder/1920/400');
}

/* Bannière de la page Contact */
.contact-banner.glitch-banner {
    background-image: url('/api/placeholder/1920/400');
}

/* Bannière de la page Inscription */
.registration-banner.glitch-banner {
    background-image: url('/api/placeholder/1920/400');
}

/* Bannière de la page Line Up */
.lineup-banner.glitch-banner {
    background-image: url('/api/placeholder/1920/400');
    height: 300px;
}

/* Bannière de la page Connexion */
.login-banner.glitch-banner {
    background-image: url('/api/placeholder/1920/400');
    height: 300px;
}

/* Adaptation pour la page d'accueil (qui a déjà un style spécifique) */
.hero.glitch-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('Images/image\ acceuil.jpg');
    height: 90vh;
}

.hero.glitch-banner .hero-content {
    position: relative;
    z-index: 2;
}

/* Ajustements pour maintenir la cohérence avec styles existants */
.hero.glitch-banner h2.glitch {
    margin-bottom: 25px;
    font-size: 5rem;
}

@media (max-width: 900px) {
    .hero.glitch-banner h2.glitch {
        font-size: 3.5rem;
    }
}

@media (max-width: 600px) {
    .hero.glitch-banner h2.glitch {
        font-size: 2.5rem;
    }
    
    .glitch-banner {
        height: 250px;
    }
}


/* Style pour le logo dans le header */
.header-logo {
    height: 50px; /* Ajustez cette valeur selon la hauteur souhaitée */
    width: auto;
    display: block;
}

/* Mise à jour du conteneur du logo pour bien aligner le logo */
.logo {
    display: flex;
    align-items: center;
}

/* Media query pour les écrans plus petits */
@media (max-width: 768px) {
    .header-logo {
        height: 40px; /* Logo légèrement plus petit sur mobile */
    }
}