/* ============================================
   666 – Music Festival
   Production CSS
   ============================================ */

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

/* ===========================
   REDUCED MOTION (accessibility)
   =========================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===========================
   SCROLL PROGRESS
   =========================== */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    background: var(--black);
    z-index: 101;
    width: 0%;
    will-change: width;
    pointer-events: none;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --bg: #ffffff;
    --bg-alt: #efefef;
    --text: #000000;
    --text-secondary: #9e9e9e;
    --text-muted: #a1a1a1;
    --border: #e0e0e0;
    --green: #00c853;
    --r-card: 40px;
    --r-pill: 999px;
    --max: 1000px;
    --font: 'DM Sans', 'Instrument Sans', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===========================
   NAVIGÁCIA
   =========================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 64px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    transition: background 0.3s;
}
.nav.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.nav-logo-img {
    height: 32px; width: auto;
    display: block;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
    font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--text); text-decoration: none;
    transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.5; }
.nav-btn {
    background: var(--white); color: var(--black);
    padding: 12px 28px; border-radius: var(--r-pill);
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    text-decoration: none; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid var(--black);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.nav-btn:hover {
    background: var(--black); color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

/* ===========================
   HERO
   =========================== */
.hero {
    margin-top: 64px;
    position: relative;
    min-height: calc(100vh - 64px);
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; will-change: transform; }
.hero-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}
.hero-bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative; z-index: 2;
    text-align: center; padding: 60px 24px;
    max-width: 700px;
}

@keyframes hero-fade-up {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-scale-in {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.hero-pill {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2.5px;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 9px 26px; border-radius: var(--r-pill);
    margin-bottom: 36px;
    color: rgba(255,255,255,0.7);
    animation: hero-fade-up 0.8s 0.2s both cubic-bezier(0.16, 1, 0.3, 1);
}

.hero h1 {
    line-height: 1; margin-bottom: 12px;
    animation: hero-scale-in 1s 0.4s both cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-logo {
    width: clamp(200px, 50vw, 480px);
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-tagline {
    font-size: clamp(13px, 2vw, 18px);
    font-weight: 500; text-transform: uppercase;
    letter-spacing: 12px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 44px;
    animation: hero-fade-up 0.8s 0.6s both cubic-bezier(0.16, 1, 0.3, 1);
}

/* Countdown */
.countdown {
    display: inline-flex; gap: 10px;
    margin-bottom: 44px;
    animation: hero-fade-up 0.8s 0.8s both cubic-bezier(0.16, 1, 0.3, 1);
}
.cd-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    width: 78px; padding: 18px 0;
    text-align: center;
    backdrop-filter: blur(8px);
}
.cd-num {
    font-size: 30px; font-weight: 800;
    letter-spacing: -1px; display: block;
    transition: transform 0.3s;
}
.cd-num.tick { transform: scale(1.15); }
.cd-lbl {
    font-size: 9px; text-transform: uppercase;
    letter-spacing: 2px; color: rgba(255,255,255,0.3);
    margin-top: 4px;
}

.hero-cta-wrap {
    animation: hero-fade-up 0.8s 0.9s both cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-cta {
    display: inline-block;
    background: var(--white); color: var(--black);
    padding: 18px 52px; border-radius: var(--r-pill);
    font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 0 0 rgba(255,255,255,0.3);
    position: relative; overflow: hidden;
}
.hero-cta:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
/* Shine sweep */
.hero-cta::after, .ticket-btn::after, .sticky-btn::after {
    content: '';
    position: absolute;
    top: -50%; left: -75%;
    width: 50%; height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
.hero-cta:hover::after, .ticket-btn:hover::after, .sticky-btn:hover::after {
    left: 125%;
}

.hero-social-proof {
    margin-top: 24px; font-size: 13px;
    color: rgba(255,255,255,0.3); letter-spacing: 0.04em;
    animation: hero-fade-up 0.8s 1s both cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-social-proof strong { color: rgba(255,255,255,0.7); }

/* ===========================
   TICKER
   =========================== */
.ticker {
    background: var(--black); color: var(--white);
    padding: 16px 0; overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.ticker-track {
    display: flex; gap: 64px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}
.ticker-item {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 3px;
    flex-shrink: 0; color: rgba(255,255,255,0.5);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item { transition: opacity 0.3s; }
.ticker:hover .ticker-item { opacity: 0.8; }

/* ===========================
   PARTNERI
   =========================== */
.partners {
    background: var(--white);
    padding: 48px 24px;
    border-bottom: 1px solid var(--border);
}
.partners-inner { max-width: var(--max); margin: 0 auto; text-align: center; }
.partners-label {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--text-muted); margin-bottom: 28px;
}
.partners-logos {
    display: flex; align-items: center;
    justify-content: center; gap: 48px; flex-wrap: wrap;
}
.partner-logo {
    height: 32px; width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.partner-logo:hover {
    opacity: 1;
}

/* ===========================
   SEKCIE
   =========================== */
.section { padding: 100px 24px; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-alt { background: var(--bg-alt); }

.section-head { text-align: center; margin-bottom: 64px; }
.section-overline {
    font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--text-muted); margin-bottom: 12px;
}
.section-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800; letter-spacing: -2px; line-height: 1.05;
}
.section-desc {
    font-size: 15px; color: var(--text-secondary);
    margin-top: 12px; max-width: 520px;
    margin-left: auto; margin-right: auto; line-height: 1.6;
}

/* ===========================
   DAY TOGGLE
   =========================== */
.day-toggle {
    display: flex;
    justify-content: center;
    position: relative;
    background: var(--bg-alt);
    border-radius: var(--r-pill);
    padding: 4px;
    max-width: 320px;
    margin: 0 auto 48px;
}
.day-btn {
    flex: 1;
    padding: 14px 24px;
    border: none;
    background: transparent;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 0.3s;
    border-radius: var(--r-pill);
}
.day-btn.active { color: var(--white); }
.day-slider {
    position: absolute;
    top: 4px; bottom: 4px; left: 4px;
    width: calc(50% - 4px);
    background: var(--black);
    border-radius: var(--r-pill);
    z-index: 1;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.day-toggle[data-active="sobota"] .day-slider {
    transform: translateX(100%);
}

/* Day lineup panels */
.day-lineup {
    display: none;
    animation: dayFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.day-lineup.active { display: block; }
@keyframes dayFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   LINEUP
   =========================== */
.lineup-head-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin-bottom: 16px;
}

.artist-card {
    position: relative; border-radius: var(--r-card);
    overflow: hidden; background: var(--bg-alt);
    cursor: pointer; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.artist-card:hover { transform: scale(1.02); }
.artist-card.big { aspect-ratio: 4/5; }
.artist-card.small { aspect-ratio: 1/1; }

.artist-placeholder {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.artist-card:hover .artist-placeholder { transform: scale(1.05); filter: brightness(1.1) contrast(1.05); }

.artist-bottom {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 28px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--white);
    transform: translateY(8px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.artist-card:hover .artist-bottom { transform: translateY(0); }
.artist-tag {
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: rgba(255,255,255,0.55); margin-bottom: 4px;
}
.artist-label { font-size: 26px; font-weight: 800; letter-spacing: -1px; }
.artist-spotify {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 8px; font-size: 11px;
    color: rgba(255,255,255,0.4);
    opacity: 0; transform: translateY(8px);
    transition: all 0.3s 0.1s;
}
.artist-card:hover .artist-spotify { opacity: 1; transform: translateY(0); }

.lineup-support-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; margin-bottom: 24px;
}
.lineup-support-grid .artist-label { font-size: 18px; }

.lineup-mystery {
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: var(--r-card);
    text-align: center;
    padding: 64px 32px;
    position: relative;
    overflow: hidden;
}
.mystery-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
    animation: mysteryPulse 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes mysteryPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}
.mystery-grain {
    position: absolute;
    inset: -50%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    opacity: 0.5;
    pointer-events: none;
    animation: grainDrift 8s linear infinite;
}
@keyframes grainDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(64px, 64px); }
}
.mystery-icon {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -2px;
    color: rgba(255,255,255,0.08);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    animation: mysteryFloat 3s ease-in-out infinite;
}
@keyframes mysteryFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.lineup-mystery h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}
.lineup-mystery p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}
.pill-links {
    display: flex; gap: 8px;
    justify-content: center; flex-wrap: wrap;
    position: relative; z-index: 2;
}
.pill-link {
    display: inline-block; padding: 12px 28px;
    border-radius: var(--r-pill); font-size: 12px; font-weight: 700;
    text-decoration: none; text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.pill-link:hover {
    background: var(--white); color: var(--black);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.1);
}

/* ===========================
   VIDEO
   =========================== */
.video-wrap {
    max-width: var(--max); margin: 0 auto;
    aspect-ratio: 16 / 9; border-radius: var(--r-card);
    background: var(--black); overflow: hidden;
    position: relative; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s;
}
.video-wrap:hover { transform: scale(1.01); }
.video-play {
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; z-index: 2;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.video-wrap:hover .video-play { transform: scale(1.15); }
.video-note {
    position: absolute; bottom: 20px;
    font-size: 10px; text-transform: uppercase;
    letter-spacing: 3px; color: rgba(255,255,255,0.2);
}
.video-wrap iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%; border: none;
}
.video-wrap.playing .video-play,
.video-wrap.playing .video-note { display: none; }

/* ===========================
   VSTUPENKY
   =========================== */
.ticket-urgency {
    text-align: center; margin-bottom: 20px;
}
.urgency-bar-wrap {
    max-width: 400px; margin: 0 auto 12px;
}
.urgency-bar-bg {
    height: 6px; background: var(--border);
    border-radius: 3px; overflow: hidden;
}
.urgency-bar-fill {
    height: 100%; width: 0%;
    background: var(--black);
    border-radius: 3px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.urgency-bar-fill.animated { width: 78%; }
.urgency-text {
    font-size: 12px; font-weight: 600;
    color: var(--text-muted); letter-spacing: 0.02em;
}
.urgency-text strong { color: var(--text); }

.eb-countdown {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 8px;
}
.eb-dot {
    width: 6px; height: 6px;
    background: var(--green); border-radius: 50%;
    animation: blink 1.2s infinite;
}
@keyframes blink {
    0%,100% { opacity: 1; } 50% { opacity: 0.3; }
}

.ticket-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 12px; align-items: start;
}

.ticket {
    background: var(--bg-alt); border-radius: var(--r-card);
    padding: 28px 20px; display: flex; flex-direction: column;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ticket:hover { transform: translateY(-6px); }
.ticket.dark { background: var(--black); color: var(--white); }

.ticket-badge {
    position: absolute; top: -11px; left: 50%;
    transform: translateX(-50%);
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    padding: 5px 20px; border-radius: var(--r-pill);
    white-space: nowrap;
}
.ticket .ticket-badge { background: var(--black); color: var(--white); }
.ticket.dark .ticket-badge { background: var(--white); color: var(--black); }

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,0,0,0.08); }
    50% { box-shadow: 0 0 16px 4px rgba(0,0,0,0.15); }
}
.ticket-badge {
    animation: badge-glow 2.5s ease-in-out infinite;
}

.ticket-tier {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--text-muted); margin-bottom: 8px;
}
.ticket.dark .ticket-tier { color: rgba(255,255,255,0.4); }

.ticket-name { font-size: 18px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 4px; }
.ticket-date { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.ticket.dark .ticket-date { color: rgba(255,255,255,0.4); }

.ticket-price { font-size: 36px; font-weight: 800; letter-spacing: -2px; line-height: 1; }
.ticket-price .eur { font-size: 15px; font-weight: 600; color: var(--text-muted); margin-left: 2px; }
.ticket.dark .eur { color: rgba(255,255,255,0.35); }

.ticket-old {
    font-size: 13px; color: var(--text-muted);
    text-decoration: line-through; margin-top: 4px; margin-bottom: 4px;
}
.ticket.dark .ticket-old { color: rgba(255,255,255,0.25); }

.ticket-bnpl {
    font-size: 12px; color: var(--text-muted);
    margin-bottom: 24px;
}
.ticket.dark .ticket-bnpl { color: rgba(255,255,255,0.35); }

.ticket-list { list-style: none; margin-bottom: 28px; flex-grow: 1; }
.ticket-list li {
    font-size: 13px; color: var(--text-secondary);
    padding: 9px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex; align-items: flex-start; gap: 10px; line-height: 1.4;
}
.ticket.dark .ticket-list li { color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.08); }
.tick { flex-shrink: 0; font-size: 13px; font-weight: 700; margin-top: 1px; }

.ticket-btn {
    width: 100%; padding: 16px; border-radius: var(--r-pill);
    border: none; font-family: var(--font);
    font-weight: 700; font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative; overflow: hidden;
}
.ticket-btn:hover { transform: translateY(-2px); }
.ticket-btn.black { background: var(--black); color: var(--white); }
.ticket-btn.black:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.ticket-btn.white { background: var(--white); color: var(--black); }
.ticket-btn.white:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

.trust-strip {
    display: flex; justify-content: center;
    gap: 32px; margin-top: 40px; flex-wrap: wrap;
}
.trust-chip {
    font-size: 12px; color: var(--text-muted);
    display: flex; align-items: center; gap: 6px;
}

/* ===========================
   ZÁŽITOK
   =========================== */
.exp-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.exp-item {
    background: var(--white); border-radius: var(--r-card);
    padding: 36px 24px; text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative; overflow: hidden;
}
.exp-item:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.exp-stat {
    font-size: 48px; font-weight: 900; letter-spacing: -2px;
    line-height: 1; margin-bottom: 12px;
    color: var(--black);
    position: relative; z-index: 2;
}
.exp-item:hover .exp-stat { color: var(--black); }
.exp-item h3 { font-size: 16px; font-weight: 800; letter-spacing: -0.3px; margin-bottom: 8px; position: relative; z-index: 2; }
.exp-item p { font-size: 13px; color: var(--text-muted); line-height: 1.55; position: relative; z-index: 2; }

/* ===========================
   RECENZIE
   =========================== */
.reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.review {
    background: var(--bg-alt); border-radius: var(--r-card);
    padding: 32px;
    transition: transform 0.3s;
}
.review:hover { transform: translateY(-4px); }
.review-src {
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--text-muted); margin-bottom: 16px;
}
.review-body { font-size: 15px; font-weight: 500; line-height: 1.65; margin-bottom: 24px; }
.review-who { display: flex; align-items: center; gap: 12px; }
.review-ava { width: 36px; height: 36px; border-radius: 50%; background: var(--border); }
.review-name { font-size: 13px; font-weight: 700; }
.review-handle { font-size: 11px; color: var(--text-muted); }

/* ===========================
   FAQ
   =========================== */
.faq-wrap { max-width: 680px; margin: 0 auto; }
.faq-row {
    border-bottom: 1px solid var(--border);
    padding: 24px 0; cursor: pointer;
}
.faq-q {
    display: flex; justify-content: space-between;
    align-items: center; font-size: 16px;
    font-weight: 700; gap: 16px;
    transition: color 0.2s;
}
.faq-row:hover .faq-q { color: var(--text-secondary); }
.faq-icon {
    font-size: 20px; color: var(--text-muted);
    transition: transform 0.3s; flex-shrink: 0;
}
.faq-a {
    font-size: 14px;
    color: var(--text-secondary); line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.3s ease,
                padding-top 0.3s ease;
}
.faq-row.open .faq-a {
    max-height: 300px;
    opacity: 1;
    padding-top: 14px;
}
.faq-row.open .faq-icon { transform: rotate(45deg); }

/* ===========================
   ZÁVEREČNÉ CTA
   =========================== */
.cta-final {
    background: var(--black); color: var(--white);
    text-align: center; padding: 120px 24px;
    position: relative; overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 80%, rgba(255,255,255,0.03), transparent 50%);
}
.cta-final h2 {
    font-size: clamp(32px, 7vw, 72px);
    font-weight: 800; letter-spacing: -3px;
    line-height: 1; margin-bottom: 16px;
    position: relative;
}
.cta-final p {
    font-size: 15px; color: rgba(255,255,255,0.35);
    margin-bottom: 40px; position: relative;
}
.cta-final .hero-cta { display: inline-block; position: relative; }
.cta-final-proof {
    margin-top: 20px; font-size: 12px;
    color: rgba(255,255,255,0.25); position: relative;
}
.cta-final-proof strong { color: rgba(255,255,255,0.5); }

/* ===========================
   INSTAGRAM FEED
   =========================== */
.ig-section { background: var(--bg-alt); }
.ig-section .section-title {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ig-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.ig-embed-wrap {
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
}
.ig-embed-wrap .instagram-media {
    margin: 0 !important;
    min-width: 0 !important;
    width: 100% !important;
}
.ig-follow {
    text-align: center;
}
.ig-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--r-pill);
    background: var(--black);
    color: var(--white);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.ig-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.ig-follow-btn::after {
    content: '';
    position: absolute;
    top: -50%; left: -75%;
    width: 50%; height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
.ig-follow-btn:hover::after { left: 125%; }

@media (max-width: 768px) {
    .ig-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ===========================
   PÄTIČKA
   =========================== */
.footer {
    background: var(--black); color: rgba(255,255,255,0.4);
    padding: 48px 24px 120px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
    max-width: var(--max); margin: 0 auto;
    display: flex; justify-content: space-between;
    align-items: start; flex-wrap: wrap; gap: 32px;
}
.footer-logo { color: var(--white); }
.footer-logo-img { height: 28px; width: auto; display: block; }
.footer-logo small { display: block; font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.25); margin-top: 8px; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a {
    font-size: 12px; color: rgba(255,255,255,0.35);
    text-decoration: none; text-transform: uppercase;
    letter-spacing: 0.08em; transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
    max-width: var(--max); margin: 36px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; justify-content: space-between;
    font-size: 11px; flex-wrap: wrap; gap: 8px;
}

/* ===========================
   STICKY CTA
   =========================== */
.sticky {
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--border);
    padding: 12px 24px;
    display: flex; align-items: center; justify-content: space-between;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky.show { transform: translateY(0); }
.sticky-left { font-size: 12px; color: var(--text-muted); }
.sticky-left strong { display: block; font-size: 18px; color: var(--black); font-weight: 800; letter-spacing: -0.5px; }
.sticky-btn {
    background: var(--black); color: var(--white);
    border: none; font-family: var(--font);
    padding: 14px 32px; border-radius: var(--r-pill);
    font-weight: 700; font-size: 12px;
    text-transform: uppercase; letter-spacing: 0.08em;
    cursor: pointer; transition: all 0.2s;
    position: relative; overflow: hidden;
}
.sticky-btn:hover { opacity: 0.85; transform: translateY(-1px); }

/* ===========================
   LIVE NOTIFIKÁCIE
   =========================== */
.live-notif {
    position: fixed; bottom: 80px; left: 24px;
    z-index: 99;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 20px;
    font-size: 13px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 300px;
}
.live-notif.show { transform: translateX(0); }
.live-notif .notif-top {
    display: flex; align-items: center; gap: 6px;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--green); margin-bottom: 4px;
}
.live-notif .notif-dot {
    width: 5px; height: 5px;
    background: var(--green); border-radius: 50%;
}
.live-notif .notif-msg { font-weight: 500; color: var(--text); }
.live-notif .notif-time { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ===========================
   FLOATING SOCIAL BAR
   =========================== */
.float-social {
    position: fixed;
    right: 20px; top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    display: flex; flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.4s;
}
.float-social.show { opacity: 1; }
.float-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text); text-decoration: none;
    font-size: 14px; font-weight: 700;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.float-social a:hover {
    background: var(--black); color: var(--white);
    border-color: var(--black);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .float-social { display: none; }
}

/* ===========================
   RESPONZIVITA
   =========================== */
@media (max-width: 768px) {
    .nav { padding: 0 20px; }
    .nav-btn { padding: 10px 20px; font-size: 11px; }
    .section { padding: 72px 20px; }
    .section-head { margin-bottom: 48px; }
    .lineup-head-grid { grid-template-columns: 1fr; }
    .lineup-support-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
    }
    .lineup-support-grid .artist-card {
        flex: 0 0 45%;
        scroll-snap-align: start;
        aspect-ratio: 1/1;
    }
    .ticket-grid { grid-template-columns: 1fr 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .exp-grid { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; align-items: center; text-align: center; }
    .footer-nav { justify-content: center; }
    .footer-bottom { justify-content: center; text-align: center; }
    .hero h1 { letter-spacing: -3px; }
    .hero-tagline { letter-spacing: 6px; }
    .cd-box { width: 64px; }
    .cd-num { font-size: 24px; }
    .live-notif { bottom: 72px; left: 12px; right: 12px; max-width: none; }
    .partners-logos { gap: 24px; }
    .partner-logo { height: 24px; }
}

@media (max-width: 480px) {
    .exp-grid { grid-template-columns: 1fr; }
    .countdown { gap: 6px; }
    .cd-box { width: 58px; padding: 14px 0; }
    .ticket-grid { grid-template-columns: 1fr; max-width: 340px; }
}
