/* ===== CSS VARIABLES ===== */
@font-face {
    font-family: 'Frost Scream';
    src: url('Frost_Scream.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --color-bg: #0a0a0a;
    --color-bg-secondary: #1a1a1a;
    --color-bg-card: #151515;
    --color-primary: #ff0033;
    --color-primary-dark: #cc0029;
    --color-text: #e0e0e0;
    --color-text-dim: #888;
    --color-border: #333;
    --font-display: 'Frost Scream', 'Metal Mania', cursive;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Oswald', sans-serif;
}

/* ===== CUSTOM RED CURSOR ===== */
* {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23ff0033" d="M3,3 L10,20 L13,13 L20,10 Z"/></svg>') 3 3, auto;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 51, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 51, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ===== AUDIO CONTROL ===== */
.audio-control {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1500;
}

.audio-toggle {
    background: var(--color-bg-card);
    border: 2px solid var(--color-border);
    color: var(--color-text);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 3s infinite;
}

.audio-toggle svg {
    width: 28px;
    height: 28px;
}

.audio-toggle:hover {
    border-color: var(--color-primary);
    background: rgba(255, 0, 51, 0.1);
    transform: scale(1.1) rotate(5deg);
}

.audio-toggle.playing {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: white;
    animation: spin-slow 10s linear infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 51, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 0, 51, 0);
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===== NAVIGATION ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--color-border);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.nav-logo {
    height: 60px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-logo img {
    height: 100%;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 0, 51, 0.5))
            drop-shadow(0 0 20px rgba(255, 0, 51, 0.3))
            drop-shadow(0 0 40px rgba(255, 0, 51, 0.2));
    animation: logo-glow 3s infinite alternate;
}

.nav-logo img:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 0 15px rgba(255, 0, 51, 0.8))
            drop-shadow(0 0 30px rgba(255, 0, 51, 0.6))
            drop-shadow(0 0 50px rgba(255, 0, 51, 0.4));
}

@keyframes logo-glow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 0, 51, 0.5))
                drop-shadow(0 0 20px rgba(255, 0, 51, 0.3))
                drop-shadow(0 0 40px rgba(255, 0, 51, 0.2));
    }
    100% {
        filter: drop-shadow(0 0 15px rgba(255, 0, 51, 0.7))
                drop-shadow(0 0 25px rgba(255, 0, 51, 0.5))
                drop-shadow(0 0 50px rgba(255, 0, 51, 0.3));
    }
}

.nav-links {
    margin-left: auto;
    display: flex;
    gap: 1.5rem;
}

.nav-btn {
    background: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-text);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-btn::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    background: var(--color-primary);
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: -1;
}

.nav-btn:hover::before {
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.nav-btn svg {
    width: 24px;
    height: 24px;
}

.nav-btn:hover {
    border-color: var(--color-primary);
    background: rgba(255, 0, 51, 0.1);
    transform: translateY(-2px) scale(1.05);
}

.nav-btn.active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.5);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(255, 0, 51, 0.5);
    }
    to {
        box-shadow: 0 0 30px rgba(255, 0, 51, 0.8);
    }
}

/* ===== PAGE SYSTEM ===== */
.page {
    display: none;
    padding-top: 100px;
    padding-bottom: 200px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.page.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

.glitch-container {
    position: relative;
    display: inline-block;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    text-shadow: 
        0 0 10px rgba(255, 0, 51, 0.5),
        0 0 20px rgba(255, 0, 51, 0.3),
        0 0 40px rgba(255, 0, 51, 0.2);
    animation: flicker 3s infinite alternate;
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 0, 51, 0.5),
            0 0 20px rgba(255, 0, 51, 0.3),
            0 0 40px rgba(255, 0, 51, 0.2);
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--color-text-dim);
    letter-spacing: 0.3em;
    margin-top: 1rem;
}

/* ===== SECTION TITLES ===== */
.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 4rem 0 3rem;
    padding: 0 2rem;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-text);
    letter-spacing: 0.2em;
    white-space: nowrap;
}

.title-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    max-width: 200px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--color-primary);
    line-height: 1.8;
    text-align: center;
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

.about-text:nth-child(1) {
    animation-delay: 0.2s;
}

.about-text:nth-child(2) {
    animation-delay: 0.4s;
}

.about-text.emphasis {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text);
    text-shadow: none;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== NEXT SHOW SECTION ===== */
.next-show-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.no-concerts-message {
    background: var(--color-bg-card);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.no-concerts-icon {
    margin-bottom: 2rem;
}

.no-concerts-icon svg {
    width: 80px;
    height: 80px;
    color: var(--color-primary);
    opacity: 0.5;
}

.no-concerts-message h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-text);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.no-concerts-message p {
    color: var(--color-text-dim);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== CONCERTS PAGE ===== */
.page-header {
    text-align: center;
    padding: 2rem;
    margin-bottom: 3rem;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--color-text);
    letter-spacing: 0.2em;
    text-shadow: 0 0 20px rgba(255, 0, 51, 0.3);
}

.page-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--color-text-dim);
    letter-spacing: 0.1em;
    margin-top: 1rem;
}

.concerts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.concert-card {
    background: var(--color-bg-card);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.concert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 51, 0.1), transparent);
    transition: all 0.5s ease;
}

.concert-card:hover::before {
    left: 100%;
}

.concert-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 51, 0.3);
}

.concert-date {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.concert-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.concert-info p {
    color: var(--color-text-dim);
    margin: 0.3rem 0;
    font-size: 1rem;
}

.concert-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.ticket-btn, .calendar-btn {
    flex: 1;
    background: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-text);
    padding: 0.8rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.1em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.ticket-btn:hover, .calendar-btn:hover {
    border-color: var(--color-primary);
    background: rgba(255, 0, 51, 0.1);
    transform: scale(1.05);
}

/* ===== SETLIST PAGE ===== */
.setlist-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.setlist-item {
    background: var(--color-bg-card);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.setlist-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 51, 0.05), transparent);
    transition: all 0.5s ease;
}

.setlist-item:hover::before {
    left: 100%;
}

.setlist-item:hover {
    border-color: var(--color-primary);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 0, 51, 0.2);
}

.setlist-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-text-dim);
    font-weight: 600;
    min-width: 60px;
    text-align: center;
    transition: all 0.3s ease;
}

.setlist-info {
    flex: 1;
}

.song-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.setlist-song {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text);
    letter-spacing: 0.05em;
}

.setlist-artist {
    color: var(--color-text-dim);
    font-size: 1.1rem;
    font-style: italic;
}

.song-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: badge-pulse 2s infinite;
}

.cover-badge {
    background: linear-gradient(135deg, rgba(255, 0, 51, 0.2), rgba(255, 0, 51, 0.3));
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 0 10px rgba(255, 0, 51, 0.3);
}

.original-badge {
    background: linear-gradient(135deg, rgba(0, 255, 100, 0.2), rgba(0, 255, 100, 0.3));
    border: 1px solid #00ff64;
    color: #00ff64;
    box-shadow: 0 0 10px rgba(0, 255, 100, 0.3);
}

@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 0, 51, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 0, 51, 0.6);
    }
}

.setlist-actions {
    display: flex;
    gap: 1rem;
}

.platform-btn {
    background: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-text);
    width: 45px;
    height: 45px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.platform-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 2px solid var(--color-primary);
    opacity: 0;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.platform-btn:hover::after {
    opacity: 1;
    transform: scale(1);
}

.platform-btn svg {
    width: 24px;
    height: 24px;
}

.platform-btn img {
    width: 24px;
    height: 24px;
    display: block;
}

.platform-btn:hover {
    border-color: var(--color-primary);
    background: rgba(255, 0, 51, 0.1);
    transform: translateY(-2px) rotate(5deg);
}

/* ===== MODALS ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--color-bg-secondary);
    border: 2px solid var(--color-primary);
    border-radius: 12px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: slideUp 0.3s ease;
    box-shadow: 0 0 50px rgba(255, 0, 51, 0.5);
}

.modal-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.modal-btn {
    background: var(--color-bg-card);
    border: 2px solid var(--color-border);
    color: var(--color-text);
    padding: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modal-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--color-primary);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

.modal-btn:hover::before {
    width: 300%;
    height: 300%;
}

.modal-btn svg {
    width: 30px;
    height: 30px;
}

.modal-btn:hover {
    border-color: var(--color-primary);
    color: white;
    transform: scale(1.02);
}

.modal-close {
    background: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-text);
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.1em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: scale(1.05);
}

.modal-legal {
    max-width: 700px;
    text-align: left;
}

.modal-text {
    max-height: 60vh;
    overflow-y: auto;
    margin-bottom: 2rem;
    padding-right: 1rem;
}

.modal-text h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-primary);
    margin: 1.5rem 0 0.5rem;
    letter-spacing: 0.05em;
}

.modal-text p {
    color: var(--color-text-dim);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.modal-text::-webkit-scrollbar {
    width: 8px;
}

.modal-text::-webkit-scrollbar-track {
    background: var(--color-bg-card);
    border-radius: 4px;
}

.modal-text::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

/* ===== FOOTER ===== */
.main-footer {
    position: relative;
    background: var(--color-bg-secondary);
    border-top: 2px solid var(--color-border);
    padding: 3rem 2rem 2rem;
    margin-top: 5rem;
    text-align: center;
    z-index: 100;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-link {
    color: var(--color-text);
    width: 50px;
    height: 50px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: var(--color-primary);
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
    z-index: -1;
}

.social-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link:hover {
    border-color: var(--color-primary);
    color: white;
    transform: translateY(-5px) rotate(10deg);
}

.footer-contact {
    margin: 2rem 0;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-email svg {
    width: 20px;
    height: 20px;
}

.contact-email:hover {
    color: var(--color-primary);
    transform: scale(1.05);
}

.footer-legal {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.legal-link {
    background: transparent;
    border: none;
    color: var(--color-text-dim);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
    transform: scale(1.1);
}

.legal-separator {
    color: var(--color-text-dim);
}

.footer-copyright {
    color: var(--color-text-dim);
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* ===== CONTACT PAGE ===== */
.contact-section,
.conditions-section,
.cta-section {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--color-primary);
    background: rgba(255, 0, 51, 0.05);
    transform: translateY(-5px);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    color: var(--color-primary);
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.contact-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-primary);
}

/* Conditions Text */
.conditions-text {
    max-width: 900px;
    margin: 2rem auto;
}

.conditions-text h3 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.conditions-text p {
    color: var(--color-text-dim);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: rgba(255, 0, 51, 0.05);
    border: 2px solid var(--color-primary);
    border-radius: 8px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--color-text-dim);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: 2px solid var(--color-primary);
    background: transparent;
    color: var(--color-text);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-btn:hover {
    background: var(--color-primary);
    color: #000;
    transform: scale(1.05);
}

.cta-btn svg {
    width: 20px;
    height: 20px;
}

/* Legal Link Text */
.legal-link-text {
    color: var(--color-text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link-text:hover {
    color: var(--color-primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .main-nav {
        padding: 0 1rem;
        height: 70px;
    }
    
    .nav-logo {
        height: 45px;
        left: 1rem;
        transform: none;
        position: relative;
    }
    
    .nav-links {
        gap: 0.8rem;
        margin-left: auto;
    }
    
    .nav-btn {
        width: 42px;
        height: 42px;
    }
    
    .nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    /* Fix pour empêcher le texte glitch de bouger la page sur mobile */
    .hero-title {
        min-width: 100%;
        display: inline-block;
        white-space: nowrap;
        overflow: hidden;
    }
    
    .glitch-container {
        width: 100%;
        display: flex;
        justify-content: center;
        overflow: hidden;
    }
    
    .setlist-item {
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }
    
    .setlist-actions {
        grid-column: 1 / -1;
        justify-content: center;
    }
    
    .modal-content {
        padding: 2rem;
    }

    .audio-control {
        bottom: 1rem;
        right: 1rem;
    }

    .audio-toggle {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .main-nav {
        padding: 0 0.5rem;
        height: 65px;
    }
    
    .nav-logo {
        height: 40px;
    }
    
    .nav-links {
        gap: 0.5rem;
    }
    
    .nav-btn {
        width: 38px;
        height: 38px;
    }
    
    .nav-btn svg {
        width: 18px;
        height: 18px;
    }
    
    /* Fix supplémentaire pour les petits écrans */
    .hero-title {
        min-width: 100%;
        display: inline-block;
        white-space: nowrap;
        overflow: hidden;
    }
    
    .glitch-container {
        width: 100%;
        display: flex;
        justify-content: center;
        overflow: hidden;
    }
    
    .section-title {
        flex-direction: column;
        gap: 1rem;
    }
    
    .title-line {
        width: 100px;
        max-width: 100%;
    }
    
    .footer-social {
        gap: 1rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
}
