:root {
    --bg: #000;
    --panel: #0d0d0d;
    --panel-2: #111;
    --text: #fff;
    --muted: #bdbdbd;
    --accent: #e91e63;
    --accent-2: #ff3f72;
    --shadow: 0 20px 60px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
html { height: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container {
    width: min(1200px, 90vw);
    margin: 0 auto;
}

.page-wrap { background: var(--bg); }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8,8,8,0.9);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0;
    gap: 32px;
    position: relative;
}

.brand {
    position: absolute;
    left: 40px;
    top: 10px;
    display: flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

.brand:hover {
    opacity: 0.8;
}

.brand img {
    height: 120px;
    width: auto;
    display: block;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.14em;
    color: var(--muted);
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--text);
    border-color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.menu-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
}

.menu-label:hover {
    color: var(--accent);
}

@media (min-width: 1025px) {
    .header-actions { display: none; }
}

.social-icons { display: flex; gap: 12px; }
.social-icons a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    font-size: 12px;
    color: var(--text);
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.social-icons a:hover { border-color: var(--accent); background: rgba(233,30,99,0.1); }

.social-icons a { padding: 8px; } /* Add padding to prevent image touching border */
.social-icons a img { width: 100%; height: 100%; object-fit: contain; }

.hamburger {
    width: 36px;
    height: 36px;
    padding: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    display: none;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--text);
    transition: transform 0.2s ease;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--panel);
    border-left: 1px solid rgba(255,255,255,0.08);
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding-top: 20px;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: var(--text);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.mobile-close:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--accent);
}

.mobile-nav ul {
    list-style: none;
    padding: 60px 0 16px;
    margin: 0;
}

.mobile-nav a {
    display: block;
    padding: 14px 24px;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--muted);
    transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav a.active { color: var(--text); background: rgba(255,255,255,0.04); }

.mobile-nav a:hover { color: var(--text); background: rgba(255,255,255,0.04); }

.mobile-nav.is-open { right: 0; }

/* Mobile menu overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: calc(100vh - 80px);
    min-height: 620px;
    overflow: hidden;
    background: #000;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 7vw;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.9s ease, transform 2s ease;
    background-position: center;
    background-size: cover;
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 60%);
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(233,30,99,0.15), transparent 45%),
                radial-gradient(circle at 80% 20%, rgba(255,63,114,0.18), transparent 40%);
    z-index: 2;
}

.slide-inner {
    position: relative;
    z-index: 3;
    max-width: 820px;
    text-align: center;
}

.slide.is-active { opacity: 1; transform: scale(1); }

.layer {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.slide.is-active .layer.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 13px;
    color: var(--accent);
    margin: 0 0 12px;
    font-weight: 600;
}

.headline {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-size: clamp(44px, 6vw, 88px);
    letter-spacing: 0.02em;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.subhead {
    font-size: clamp(16px, 1.5vw, 22px);
    color: var(--muted);
    margin: 0 0 32px;
    line-height: 1.6;
}

.cta-wrap { display: inline-flex; gap: 14px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 999px;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    font-size: 12px;
    font-family: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.btn.primary { background: linear-gradient(120deg, var(--accent), var(--accent-2)); color: var(--text); box-shadow: var(--shadow); }
.btn.primary:hover { transform: translateY(-1px) scale(1.01); box-shadow: 0 24px 70px rgba(233,30,99,0.35); }

.btn.ghost { border-color: var(--text); color: var(--text); background: transparent; }
.btn.ghost:hover { border-color: var(--accent); color: var(--accent); }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.35);
    color: var(--text);
    font-size: 22px;
    cursor: pointer;
    z-index: 4;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.slider-arrow:hover { border-color: var(--accent); background: rgba(233,30,99,0.18); }

.slider-arrow.prev { left: 34px; }
.slider-arrow.next { right: 34px; }

.slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.slider-dots button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.slider-dots button.is-active { background: var(--accent); border-color: var(--accent); transform: scale(1.1); }

/* Sections */
.section { padding: 110px 0; }
.section, .hero-slider, .site-footer { scroll-margin-top: 88px; }

.section-head {
    margin-bottom: 50px;
    text-align: center;
}

.section-head h2 {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-size: clamp(34px, 4vw, 56px);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 12px;
}

.section-sub { margin: 0; color: var(--muted); font-size: 16px; }

/* Releases */
.latest { background: var(--bg); }

.release-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 26px;
}

.release-card {
    background: var(--panel);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.28);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.release-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.38); }

.release-card .cover { aspect-ratio: 1 / 1; overflow: hidden; }
.release-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.release-card:hover img { transform: scale(1.08); }

.release-meta { padding: 18px 16px 20px; position: relative; }
.release-meta h3 { margin: 0 0 6px; letter-spacing: 0.04em; text-transform: uppercase; font-size: 16px; }
.release-meta p { margin: 0 0 12px; color: var(--muted); font-size: 14px; }

.play-btn {
    position: absolute;
    top: -26px;
    right: 16px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    color: var(--text);
    font-size: 16px;
    cursor: pointer;
    box-shadow: var(--shadow);
    display: grid;
    place-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.play-btn:hover { transform: scale(1.04); box-shadow: 0 20px 50px rgba(233,30,99,0.32); }

/* Events */
.events { background: var(--panel-2); position: relative; }
.events::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(233,30,99,0.06), transparent 50%);
    pointer-events: none;
}

.event-list { display: flex; flex-direction: column; gap: 18px; position: relative; z-index: 1; }

.event-row {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 18px 22px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(4px);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.event-row:hover { border-color: var(--accent); transform: translateY(-2px); }

.event-date {
    width: 100%;
    text-align: center;
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
    border-radius: 10px;
    padding: 14px 8px;
    font-family: 'Oswald', 'Inter', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.event-date .day { display: block; font-size: 26px; font-weight: 700; }
.event-date .month { display: block; font-size: 13px; letter-spacing: 0.16em; }

.event-info h3 { margin: 0 0 6px; font-size: 18px; letter-spacing: 0.04em; text-transform: uppercase; }
.event-info p { margin: 0; color: var(--muted); font-size: 14px; }

.event-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.event-row .btn { padding: 12px 22px; }

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.3);
    color: var(--text);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.2s ease;
    padding: 0;
}

.share-btn svg {
    width: 18px;
    height: 18px;
}

.share-btn:hover {
    border-color: var(--accent);
    background: rgba(233,30,99,0.15);
    transform: translateY(-2px);
}

.share-btn[data-share="facebook"]:hover { border-color: #1877f2; background: rgba(24,119,242,0.15); }
.share-btn[data-share="twitter"]:hover { border-color: #1da1f2; background: rgba(29,161,242,0.15); }
.share-btn[data-share="whatsapp"]:hover { border-color: #25d366; background: rgba(37,211,102,0.15); }

/* Gallery */
.gallery { background: var(--panel); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    background: #050505;
}

.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.gallery-item::before {
    content: "+";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--text);
    font-size: 28px;
    opacity: 0;
    z-index: 1;
    transform: scale(0.9);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover::before { opacity: 1; transform: scale(1); }

/* About */
.about { background: var(--panel-2); }

.about-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.about-copy h2 {
    margin: 0 0 18px;
    font-family: 'Oswald', 'Inter', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: clamp(32px, 3.2vw, 48px);
}

.about-copy p { color: var(--muted); line-height: 1.7; margin: 0 0 16px; }

/* Contact */
.contact { background: var(--panel); position: relative; overflow: hidden; }
.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 24%, rgba(233,30,99,0.12), transparent 40%),
                radial-gradient(circle at 82% 32%, rgba(255,63,114,0.14), transparent 42%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    position: relative;
    z-index: 1;
}

.contact h2 {
    margin: 8px 0 16px;
    font-family: 'Oswald', 'Inter', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: clamp(30px, 3vw, 44px);
}

.contact-sub { color: var(--muted); margin: 0 0 20px; line-height: 1.6; }

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.contact-list li {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-list li:hover {
    border-color: rgba(233,30,99,0.3);
    background: rgba(255,255,255,0.04);
}

.contact-list .contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.contact-details span {
    color: var(--muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
}

.contact-details strong {
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5;
}

.contact-details a {
    color: var(--text);
    transition: color 0.2s ease;
}

.contact-details a:hover {
    color: var(--accent);
}

.contact-form {
    background: var(--panel-2);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.contact-form form { display: grid; gap: 16px; }

.form-row { display: grid; gap: 8px; }
.form-row label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.form-row input,
.form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.35);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(233,30,99,0.18);
}

.contact .btn { width: fit-content; padding-inline: 24px; }

.form-message {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
    transition: opacity 0.3s ease;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: #81c784;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.15);
    border: 1px solid rgba(244, 67, 54, 0.4);
    color: #e57373;
}

.contact-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Footer */
.site-footer { background: #080808; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 34px;
    padding: 80px 0 50px;
}

.footer-brand p { color: var(--muted); margin: 12px 0 16px; max-width: 360px; }
.footer-menu h3, .footer-contact h3 { margin: 0 0 12px; letter-spacing: 0.08em; text-transform: uppercase; font-size: 14px; }
.footer-menu ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-menu a { color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px; }
.footer-menu a:hover { color: var(--text); }
.footer-contact p { margin: 6px 0; color: var(--muted); }
.footer-contact a { color: var(--muted); text-decoration: none; }
.footer-contact a:hover { color: var(--text); }
.contact-item { display: flex; align-items: flex-start; gap: 10px; }
.contact-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 16px 0 26px; text-align: center; color: var(--muted); font-size: 13px; }
.footer-bottom .social-icons { justify-content: center; margin-bottom: 16px; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    padding: 30px;
}

.lightbox.is-open { display: flex; }
.lightbox-image { max-width: 90vw; max-height: 80vh; border-radius: 12px; box-shadow: var(--shadow); }
.lightbox-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.4);
    color: var(--text);
    font-size: 26px;
    cursor: pointer;
}

/* Video overlay */
.video-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    padding: 30px;
}

.video-overlay.is-open { display: flex; }

.video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.video-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.4);
    color: var(--text);
    font-size: 26px;
    cursor: pointer;
    z-index: 1201;
}

.video-close:hover {
    background: rgba(0,0,0,0.6);
    border-color: rgba(255,255,255,0.5);
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.98) 0%, rgba(13,13,13,0.95) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(233,30,99,0.3);
    padding: 24px 20px;
    z-index: 1300;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.is-visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.cookie-content h3 {
    margin: 0;
    font-size: 18px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
}

.cookie-content p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    font-size: 14px;
    padding: 10px 24px;
}

@media (min-width: 768px) {
    .cookie-content {
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 24px;
    }

    .cookie-content h3 {
        grid-column: 1 / -1;
    }
}

/* FAQ Section */
.faq { background: var(--panel-2); }

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item[open] {
    border-color: var(--accent);
}

.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    list-style: none;
    transition: background 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    background: rgba(255,255,255,0.03);
}

.faq-item summary h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 24px 20px;
    color: var(--muted);
    line-height: 1.7;
    animation: fadeIn 0.3s ease;
}

.faq-content p {
    margin: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Testimonials Section */
.testimonials { background: var(--panel); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(233,30,99,0.3);
}

.quote-icon {
    font-size: 72px;
    line-height: 1;
    color: var(--accent);
    opacity: 0.2;
    font-family: Georgia, serif;
    margin-bottom: 12px;
}

.testimonial-card blockquote {
    margin: 0 0 24px;
    padding: 0;
}

.testimonial-card blockquote p {
    margin: 0;
    color: var(--text);
    line-height: 1.7;
    font-size: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-info strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.author-info span {
    font-size: 13px;
    color: var(--muted);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
    z-index: 1100;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 50px;
    height: 50px;
    background: rgba(13,13,13,0.9);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    color: var(--text);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

.back-to-top:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--text);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll fade helper */
.fade-me { opacity: 0; transform: translateY(20px); transition: opacity 0.9s ease, transform 0.9s ease; }
.fade-me.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
    .header-inner { gap: 16px; }
    .main-nav { display: none; }
    .hamburger { display: flex; }
    .hero-slider { height: calc(100vh - 72px); min-height: 560px; }
    .slider-arrow.prev { left: 18px; }
    .slider-arrow.next { right: 18px; }
    .gallery-grid { gap: 10px; }
    .about-inner { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section, .hero-slider, .site-footer { scroll-margin-top: 76px; }
    .section { padding: 90px 0; }
    .header-inner { padding: 14px 0; }
    .brand img { height: 60px; }
    .social-icons { display: none; }
    .headline { font-size: clamp(36px, 8vw, 64px); }
    .subhead { font-size: 16px; }
    .event-row {
        grid-template-columns: 100px 1fr;
        grid-template-areas: "date info" "actions actions";
    }
    .event-actions {
        grid-area: actions;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .event-actions .btn { margin: 0; }
    .gallery-item { aspect-ratio: 1 / 1; }
    .footer-inner { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 56px; height: 56px; }
    .back-to-top { bottom: 88px; right: 20px; width: 46px; height: 46px; }
}

@media (max-width: 560px) {
    .section, .hero-slider, .site-footer { scroll-margin-top: 70px; }
    .brand img { height: 50px; }
    .slider-arrow { display: none; }
    .hero-slider { min-height: 520px; }
    .section-head h2 { letter-spacing: 0.02em; }
    .release-meta h3 { font-size: 15px; }
    .event-row { grid-template-columns: 1fr; text-align: left; }
    .event-date { justify-self: start; width: auto; max-width: 100px; }
    .event-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .event-actions .btn { width: 100%; }
    .share-buttons { justify-content: center; }
    .faq-item summary { padding: 16px 18px; }
    .faq-item summary h3 { font-size: 15px; }
    .faq-content { padding: 0 18px 16px; }
    .whatsapp-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
    .whatsapp-float svg { width: 28px; height: 28px; }
    .back-to-top { bottom: 80px; right: 16px; width: 44px; height: 44px; }
    .back-to-top svg { width: 20px; height: 20px; }
}
