body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #eee;
    text-align: center;
    padding: 20px;
}

/* Homepage Hero Section */
.hero-section {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    padding: 40px 20px;
}

.hero-description {
    max-width: 800px;
    margin: 30px auto;
    text-align: left;
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #ccc;
    text-align: center;
}

.hero-features {
    background: linear-gradient(145deg, #1e1e1e, #1a1a1a);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.2);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #eee;
}

/* Featured Bands Section */
.featured-bands {
    max-width: 1400px;
    margin: 0 auto;
}

.section-subtitle {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    margin-top: 40px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #e63946, #d1232f);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #d1232f, #b01e2a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}
h1 {
    color: #e63946;
    text-decoration: none;
}
.band-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    padding: 20px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.band-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.band-card {
    width: 100%;
    height: 250px;
    background: linear-gradient(145deg, #1e1e1e, #1a1a1a);
    color: white;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.2);
    border: 1px solid #333;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.band-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
    border-color: #e63946;
}

.band-card-top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.band-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #e63946;
    margin: 0 0 10px 0;
    text-align: center;
}

.band-stage,
.band-genre,
.band-day,
.band-time {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #ccc;
    text-align: center;
}

.band-stage {
    color: #e63946;
    font-weight: 600;
}

.band-genre {
    font-style: italic;
}

.band-day {
    color: #fff;
    font-weight: 500;
}

.band-time {
    color: #e63946;
    font-weight: 600;
    font-size: 1rem;
}

.like-btn {
    background: transparent;
    color: #aaa;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    z-index: 10;
}

.like-btn:hover {
    color: #e63946;
    transform: scale(1.1);
}

.like-btn.liked {
    color: #e63946;
}

.like-btn.liked:hover {
    color: #d1232f;
    transform: scale(1.1);
}
/*.like-btn {
    background-color: #e11d48;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
}
.like-btn:hover {
    background-color: #be123c;
}*/
.filters {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(145deg, #1e1e1e, #1a1a1a);
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.filter-days {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-days label {
    color: #eee;
    font-weight: 600;
    font-size: 0.95rem;
}

.day-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.day-btn {
    background: linear-gradient(135deg, #333, #444);
    color: #eee;
    border: 2px solid #555;
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.day-btn:hover {
    background: linear-gradient(135deg, #444, #555);
    border-color: #e63946;
    color: #fff;
}

.day-btn.active {
    background: linear-gradient(135deg, #e63946, #d1232f);
    border-color: #e63946;
    color: white;
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.4);
}

.filter-stages {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-stages label {
    color: #eee;
    font-weight: 600;
    font-size: 0.95rem;
}

.stage-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stage-btn {
    background: linear-gradient(135deg, #333, #444);
    color: #eee;
    border: 2px solid #555;
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.stage-btn:hover {
    background: linear-gradient(135deg, #444, #555);
    border-color: #e63946;
    color: #fff;
}

.stage-btn.active {
    background: linear-gradient(135deg, #e63946, #d1232f);
    border-color: #e63946;
    color: white;
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.4);
}

.filter-selects {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.filters label {
    color: #eee;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-reset {
    background: linear-gradient(135deg, #e63946, #d1232f);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-reset:hover {
    background: linear-gradient(135deg, #d1232f, #b01e2a);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
}

.band-count {
    text-align: center;
    margin-bottom: 20px;
    color: #ccc;
}

.no-bands {
    text-align: center;
    padding: 40px;
    color: #ccc;
    font-size: 1.1rem;
}

.bands-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Band Detail Page Styles */
.band-detail-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.btn-retour {
    display: inline-block;
    background: linear-gradient(135deg, #333, #444);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-retour:hover {
    background: linear-gradient(135deg, #444, #555);
    transform: translateY(-2px);
}

.band-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #333;
}

.band-header h1 {
    margin: 0;
    font-size: 2.5rem;
}

.like-btn-large {
    background: rgba(230, 57, 70, 0.2);
    color: #e63946;
    border: 2px solid #e63946;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.like-btn-large:hover {
    background: #e63946;
    color: white;
    transform: scale(1.05);
}

.like-btn-large.liked {
    background: #e63946;
    color: white;
}

.band-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
}

.band-logo-img {
    max-width: 300px;
    max-height: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.band-info h3 {
    color: #e63946;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.band-info p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.band-schedule {
    background: linear-gradient(145deg, #1e1e1e, #1a1a1a);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333;
    margin: 20px 0;
}

.schedule-slot {
    padding: 15px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 4px solid #e63946;
}

.band-description,
.band-playlist {
    background: linear-gradient(145deg, #1e1e1e, #1a1a1a);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .band-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .band-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .band-header h1 {
        font-size: 2rem;
    }
}
.filters select {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #1a1a1a;
    color: #fff;
}
.filters select:focus {
    outline: none;
    border-color: #e63946;
}
.navbar {
    background-color: #1a1a1a;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.navbar .nav-title {
    font-size: 1.5rem;
    color: #e63946;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar .nav-title:hover {
    color: #ff6b74;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.festival-select {
    background: linear-gradient(135deg, #e63946, #d1232f);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.navbar a {
    color: #eee;
    text-decoration: none;
}

.navbar a.active {
    font-weight: bold;
    border-bottom: 2px solid #e63946;
}

/* 💡 Ajout pour le bouton burger */
.burger {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #eee;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.burger:hover {
    background-color: rgba(230, 57, 70, 0.2);
    color: #e63946;
}

.burger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #eee;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* 📱 Responsive mobile uniquement */
@media (max-width: 768px) {
    .burger {
        display: block;
        z-index: 1001;
    }

    .navbar ul {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 20px;
        right: 20px;
        width: calc(100vw - 40px);
        margin: 0;
        background-color: #1a1a1a;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        border: 1px solid #333;
        z-index: 999;
    }

    .navbar ul.show {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    .navbar ul li {
        padding: 12px 0;
        border-top: 1px solid #333;
    }
    
    .navbar ul li:first-child {
        border-top: none;
    }
    
    .navbar ul li a {
        padding: 8px 16px;
        display: block;
        transition: background-color 0.3s ease;
    }
    
    .navbar ul li a:hover {
        background-color: rgba(230, 57, 70, 0.1);
        border-radius: 4px;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#reset-filters {
    background-color: #444;
    color: #fff;
    border: 1px solid #888;
    border-radius: 5px;
    padding: 8px 12px;
    cursor: pointer;
}
#reset-filters:hover {
    background-color: #666;
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.festival-select {
    background-color: #333;
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    border: 1px solid #555;
    cursor: not-allowed;
    font-weight: bold;
    font-size: 0.95rem;
}
.auth-container {
    max-width: 400px;
    margin: 50px auto;
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 10px #e63946;
    color: #eee;
}
.auth-container h2 {
    margin-bottom: 20px;
    color: #e63946;
}
.auth-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background-color: #2a2a2a;
    border: 1px solid #555;
    border-radius: 5px;
    color: #fff;
}
.auth-container input:focus {
    border-color: #e63946;
    outline: none;
}
.auth-container button {
    width: 100%;
    padding: 10px;
    background-color: #e63946;
    border: none;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}
.auth-container button:hover {
    background-color: #ff5a5f;
}
.auth-container a {
    color: #ccc;
    display: block;
    margin-top: 15px;
    text-align: center;
}
.auth-container p {
    text-align: center;
}
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-menu {
    width: 220px;
    background-color: #1a1a1a;
    padding: 20px;
    border-right: 2px solid #e63946;
}

.admin-menu h2 {
    color: #e63946;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.admin-menu ul {
    list-style: none;
    padding: 0;
}

.admin-menu a {
    display: block;
    color: #eee;
    padding: 8px 0;
    text-decoration: none;
}

.admin-menu a:hover {
    color: #e63946;
}

.admin-content {
    flex-grow: 1;
    padding: 30px;
    background-color: #111;
    color: #eee;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.admin-table th, .admin-table td {
    padding: 10px;
    border: 1px solid #333;
    text-align: left;
}
.admin-table th {
    background-color: #222;
}
.festival-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
}
.festival-form input, .festival-form textarea {
    background-color: #2a2a2a;
    border: 1px solid #444;
    color: #eee;
    padding: 8px;
    border-radius: 5px;
}
.festival-form button {
    width: 200px;
    align-self: start;
}

/* Filtres sticky en haut de la page */
.filters {
    position: sticky;
    top: 0;
    background: #111;
    z-index: 100;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-retour {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
    text-decoration: none;
    background-color: #222;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s;
}
.btn-retour:hover {
    background-color: #444;
}

/* Admin edit band page styles */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    text-align: left;
}

.button-group {
    margin-top: 24px;
    display: flex;
    gap: 12px;
}

.btn-primary {
    background-color: #e63946;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #d1232f;
}

.btn-secondary {
    background-color: #555;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 16px;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #666;
}

.btn-danger {
    background-color: #b91c1c;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 16px;
    cursor: pointer;
}

.btn-danger:hover {
    background-color: #991b1b;
}

.danger-zone {
    margin-top: 40px;
    padding: 20px;
    border: 2px dashed #b91c1c;
    border-radius: 8px;
    background-color: rgba(185, 28, 28, 0.1);
}

.alert {
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: slideInAlert 0.3s ease-out;
}

.alert::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.alert-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    border-left: 4px solid #10b981;
}

.alert-success::before {
    background: radial-gradient(circle, #10b981, #059669);
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.alert-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    border-left: 4px solid #ef4444;
}

.alert-error::before {
    background: radial-gradient(circle, #ef4444, #dc2626);
    content: '!';
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

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

.hidden {
    display: none;
}

.band-edit-link {
    color: #eee;
    text-decoration: none;
    font-weight: bold;
}

.band-edit-link:hover {
    color: #e63946;
    text-decoration: underline;
}

.btn-edit {
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 10px;
    text-decoration: none;
    display: inline-block;
    margin-right: 8px;
}

.btn-edit:hover {
    background-color: #2563eb;
}

/* User profile styles */
.profile-container {
    display: flex;
    max-width: 1400px;
    margin: 40px auto;
    gap: 40px;
    padding: 0 40px;
    min-height: calc(100vh - 100px);
}

.profile-sidebar {
    width: 280px;
    background: linear-gradient(145deg, #1e1e1e, #1a1a1a);
    border-radius: 12px;
    padding: 25px;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.profile-content {
    flex-grow: 1;
    background: linear-gradient(145deg, #1e1e1e, #1a1a1a);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    max-width: none;
}

.profile-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #333;
}

.profile-avatar img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #e63946;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
    transition: transform 0.3s ease;
}

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

.avatar-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e63946, #d1232f);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
    transition: transform 0.3s ease;
}

.avatar-placeholder:hover {
    transform: scale(1.05);
}

.profile-avatar h2 {
    margin: 0;
    color: #eee;
    font-size: 1.6rem;
    text-align: center;
    font-weight: 600;
}

.profile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-nav a {
    display: flex;
    align-items: center;
    padding: 18px 22px;
    color: #ccc;
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    font-size: 1.05rem;
    gap: 10px;
}

.profile-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, #e63946, #ff5a5f);
    transition: width 0.3s ease;
    z-index: -1;
}

.profile-nav a:hover {
    background-color: rgba(230, 57, 70, 0.1);
    color: #e63946;
    transform: translateX(5px);
}

.profile-nav a:hover::before {
    width: 4px;
}

.profile-nav a.active {
    background: linear-gradient(135deg, #e63946, #d1232f);
    color: white;
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.4);
}

.profile-nav a.active::before {
    width: 100%;
}

.profile-form {
    max-width: 800px;
}

.profile-form .form-group {
    margin-bottom: 30px;
    position: relative;
}

.profile-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #eee;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.profile-form input[type="text"],
.profile-form input[type="email"],
.profile-form input[type="password"],
.profile-form input[type="file"],
.profile-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: linear-gradient(145deg, #2a2a2a, #252525);
    border: 2px solid #444;
    border-radius: 10px;
    color: #eee;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.profile-form input[type="file"] {
    padding: 10px 18px;
    cursor: pointer;
}

.profile-form input[type="file"]::-webkit-file-upload-button {
    background: linear-gradient(135deg, #e63946, #d1232f);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    margin-right: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.profile-form input[type="file"]::-webkit-file-upload-button:hover {
    background: linear-gradient(135deg, #d1232f, #b01e2a);
    transform: translateY(-1px);
}

.current-avatar {
    margin-top: 15px;
    padding: 20px;
    background: linear-gradient(145deg, rgba(230, 57, 70, 0.08), rgba(230, 57, 70, 0.03));
    border: 2px solid rgba(230, 57, 70, 0.25);
    border-radius: 12px;
}

.current-avatar p {
    margin: 0 0 12px 0;
    color: #e63946;
    font-weight: 600;
    font-size: 0.95rem;
}

.current-avatar img {
    border: 3px solid #e63946;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.profile-form input:focus,
.profile-form textarea:focus {
    border-color: #e63946;
    outline: none;
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.15);
    background: linear-gradient(145deg, #2d2d2d, #282828);
    transform: translateY(-1px);
}

.profile-form textarea {
    min-height: 140px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

.profile-form .btn-primary {
    margin-top: 20px;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

.profile-form .password-section {
    margin-top: 60px;
    padding: 35px;
    background: linear-gradient(145deg, rgba(230, 57, 70, 0.08), rgba(230, 57, 70, 0.03));
    border-radius: 15px;
    border: 2px solid rgba(230, 57, 70, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.profile-form .password-section h3 {
    color: #e63946;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-form .password-section p {
    color: #bbb;
    margin-bottom: 30px;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
}

.liked-bands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.calendar-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calendar-day {
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
}

.calendar-day-header {
    background-color: #333;
    padding: 12px 15px;
    font-weight: bold;
    font-size: 1.2rem;
}

.calendar-events {
    padding: 0;
}

.calendar-event {
    padding: 15px;
    border-bottom: 1px solid #333;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.calendar-event:last-child {
    border-bottom: none;
}

.calendar-event:hover {
    background-color: #222;
}

.calendar-event-time {
    font-weight: bold;
    color: #e63946;
}

.calendar-event-name {
    font-size: 1.1rem;
    font-weight: bold;
}

.calendar-event-stage {
    font-size: 0.9rem;
    opacity: 0.8;
}

.calendar-event-genre {
    font-size: 0.8rem;
    color: #ccc;
}

.calendar-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.calendar-filters select {
    padding: 8px 12px;
    border-radius: 4px;
    background-color: #2a2a2a;
    border: 1px solid #444;
    color: #eee;
}

/* Desktop optimizations for larger screens */
@media (min-width: 1400px) {
    .profile-container {
        max-width: 100%;
        gap: 50px;
        padding: 0 60px;
    }
    
    .profile-sidebar {
        width: 300px;
        padding: 30px;
    }
    
    .profile-content {
        padding: 40px;
        max-width: none;
    }
    
    .profile-form {
        max-width: 900px;
    }
}

/* Responsive design for tablets and smaller */
@media (max-width: 1200px) {
    .liked-bands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 1024px) {
    .profile-container {
        max-width: 100%;
        gap: 20px;
        padding: 0 15px;
    }
    
    .profile-sidebar {
        width: 260px;
        position: static;
    }
    
    .liked-bands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
        gap: 20px;
        margin: 15px auto;
        padding: 0 15px;
    }
    
    .profile-sidebar {
        width: 100%;
        padding: 20px;
        position: static;
    }
    
    .profile-avatar {
        flex-direction: row;
        text-align: left;
        gap: 20px;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .profile-avatar img,
    .avatar-placeholder {
        width: 80px;
        height: 80px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .avatar-placeholder {
        font-size: 32px;
    }
    
    .profile-avatar h2 {
        margin: 0;
        text-align: left;
        font-size: 1.2rem;
    }
    
    .profile-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    
    .profile-nav a {
        margin-bottom: 0;
        padding: 12px 16px;
        font-size: 0.9rem;
        border-radius: 6px;
        flex: 1;
        min-width: 120px;
        text-align: center;
        justify-content: center;
    }
    
    .profile-nav a:hover {
        transform: none;
    }
    
    .profile-content {
        padding: 20px;
    }
    
    .profile-form {
        max-width: 100%;
    }
    
    .profile-form .password-section {
        margin-top: 30px;
        padding: 20px;
    }
    
    .liked-bands-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .profile-container {
        margin: 10px auto;
        padding: 0 10px;
    }
    
    .profile-sidebar,
    .profile-content {
        padding: 15px;
        border-radius: 8px;
    }
    
    .profile-avatar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .profile-avatar img,
    .avatar-placeholder {
        width: 70px;
        height: 70px;
    }
    
    .avatar-placeholder {
        font-size: 28px;
    }
    
    .profile-nav ul {
        flex-direction: column;
        gap: 5px;
    }
    
    .profile-nav a {
        min-width: auto;
        padding: 10px 12px;
    }
    
    .profile-form input[type="text"],
    .profile-form input[type="email"],
    .profile-form input[type="password"],
    .profile-form textarea {
        padding: 10px 12px;
    }
    
    .profile-form .btn-primary {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}
.band-card-top {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 8px;
}

.like-btn {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: #aaa;
    transition: color 0.2s ease;
}

.like-btn:hover {
    color: #e63946;
}

.like-btn.liked {
    color: #e63946;
}

.band-name {
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.band-stage {
    color: #e63946;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.band-genre {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 10px;
}
.band-day,
.band-time {
    font-size: 0.9rem;
    color: #eee;
    margin: 2px 0;
}
/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .band-link {
        display: block;
        width: 100% !important;
    }
    .filters {
        position: sticky;
        top: 70px; /* Account for navbar height */
        background-color: #111;
        z-index: 100;
        padding: 15px 10px;
        border-bottom: 1px solid #e63946;
        margin-top: 0;
        margin-bottom: 20px;
        flex-direction: column;
        gap: 15px;
        max-height: 60vh;
        overflow-y: auto;
    }

    .filters > div {
        margin-bottom: 0;
    }

    .filters label {
        font-size: 0.9rem;
        margin-bottom: 8px;
        font-weight: bold;
        color: #e63946;
    }
    
    /* Compact horizontal scrollable buttons for mobile */
    .day-buttons,
    .stage-buttons {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 5px 0;
        scrollbar-width: thin;
        scrollbar-color: #e63946 #333;
    }
    
    .day-buttons::-webkit-scrollbar,
    .stage-buttons::-webkit-scrollbar {
        height: 4px;
    }
    
    .day-buttons::-webkit-scrollbar-track,
    .stage-buttons::-webkit-scrollbar-track {
        background: #333;
        border-radius: 2px;
    }
    
    .day-buttons::-webkit-scrollbar-thumb,
    .stage-buttons::-webkit-scrollbar-thumb {
        background: #e63946;
        border-radius: 2px;
    }
    
    .day-btn,
    .stage-btn {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 8px 12px;
        font-size: 0.85rem;
        min-width: auto;
        margin-bottom: 0;
    }
    
    .filter-selects {
        display: flex;
        gap: 10px;
        align-items: flex-end;
        flex-wrap: wrap;
    }
    
    .filter-selects label {
        flex: 1;
        min-width: 120px;
    }
    
    .filters select {
        width: 100%;
        padding: 8px;
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    
    #reset-filters {
        flex-shrink: 0;
        padding: 8px 12px;
        font-size: 0.85rem;
        white-space: nowrap;
        margin-bottom: 0;
    }
    
    /* Ensure band list has proper spacing after sticky filters */
    #band-results {
        margin-top: 20px;
    }
}