* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: white;
    background: black;
    overflow-x: hidden;
}

/* Video Background */
#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

/* Main Container */
.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Logo */
.logo {
    max-width: 280px;
    width: 100%;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-in;
}

/* Action Buttons (Linktree style) */
.action-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.75rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 0;
    color: white;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    text-align: center;
    cursor: pointer;
}

.btn:hover {
    background: white;
    color: black;
    border-color: white;
}

.btn:focus {
    outline: 2px solid white;
    outline-offset: 3px;
}

.btn-primary {
    background: white;
    color: black;
    border-color: white;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    padding: 0.9rem 2rem;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.88);
    color: black;
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
}

/* Video Embed */
.video-section {
    width: 100%;
    margin-bottom: 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Concert Cards */
.concerts {
    width: 100%;
    margin-bottom: 2rem;
}

.concert-card {
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.concert-card h2 {
    font-size: 0.72rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
}

.concert-item {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.15rem 1rem;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.concert-item:first-of-type {
    border-top: none;
    padding-top: 0;
}

.concert-date {
    font-size: 0.72rem;
    opacity: 0.5;
    letter-spacing: 0.08em;
    grid-column: 1;
    grid-row: 1;
}

.concert-name {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    grid-column: 1;
    grid-row: 2;
}

.concert-location {
    font-size: 0.72rem;
    opacity: 0.6;
    letter-spacing: 0.04em;
    grid-column: 1;
    grid-row: 3;
}

.concert-item .btn-sm {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
    white-space: nowrap;
}

/* Collapsible About Section */
.about-section {
    width: 100%;
    margin-bottom: 2rem;
}

.about-toggle {
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    color: white;
    padding: 1rem 1.5rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.about-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

.about-toggle:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

.about-toggle-icon {
    transition: transform 0.3s ease;
    font-size: 1.2em;
}

.about-toggle[aria-expanded="true"] .about-toggle-icon {
    transform: rotate(180deg);
}

.about-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.about-content.expanded {
    max-height: 2000px;
}

.about-inner {
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    padding: 1.5rem;
    margin-top: 1rem;
    line-height: 1.6;
}

.about-inner h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.about-inner p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.team-list {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Newsletter */
.newsletter {
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.newsletter h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input[type="email"] {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: white;
    font-size: 0.85rem;
    text-align: center;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input[type="email"]:focus {
    outline: 2px solid white;
    outline-offset: 2px;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 0.85rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 0;
    color: white;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.newsletter-form button:hover {
    background: white;
    color: black;
}

.newsletter-form button:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

.newsletter-success {
    display: none;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    border-radius: 8px;
    margin-top: 1rem;
}

.newsletter-success.show {
    display: block;
}

/* Contact Box */
.contact-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    transition: background 0.2s ease;
}

.contact-box:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-box:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links a:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }

    .logo {
        max-width: 220px;
    }

    .btn {
        font-size: 0.72rem;
        padding: 0.8rem 1.5rem;
    }

    .btn-primary {
        font-size: 0.95rem;
        padding: 0.9rem 1.5rem;
    }

    .concert-item {
        grid-template-columns: 1fr auto;
    }

    .newsletter {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 180px;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    z-index: 9999;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-consent-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-content p {
    flex: 1;
    min-width: 280px;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-consent-content a {
    color: white;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: white;
    color: black;
}

.cookie-btn-accept:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cookie-btn:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 1.25rem 1rem;
    }

    .cookie-consent-content {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    .cookie-consent-content p {
        min-width: auto;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
