:root {
    --bg-dark: #030305;
    --bg-darker: #010102;
    --cyan: #b90027; /* Tvoje hlavní červená (původně modrá) */
    --teal: #ff3366; /* Sekundární světlejší červená pro hezké přechody (původně tyrkysová) */
    --blue: #800018; /* Tmavší červená (původně tmavě modrá) */
    --green: #39ff14; /* Zelenou na cenovky jsem nechal, vypadá to s červenou dobře */
    --danger: #ff2b6a;
    --text-main: #f0f0f0;
    --font-title: 'Anton', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg-dark); color: var(--text-main); font-family: var(--font-body); overflow-x: hidden; position: relative; min-height: 100vh; }
::selection { background: var(--cyan); color: var(--bg-dark); }
.bg-noise { position: fixed; inset: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: -3; background: radial-gradient(circle at 50% 50%, rgba(185, 0, 39, 0.05) 0%, transparent 60%); }
.bg-crosses { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: -2; overflow: hidden; }
.cross-line { position: absolute; width: 150vw; height: 40px; background: linear-gradient(90deg, transparent, rgba(185, 0, 39, 0.15), rgba(255, 51, 102, 0.15), transparent); top: 50%; left: -25vw; transform-origin: center; filter: blur(8px); }
.cross-1 { transform: rotate(45deg); }
.cross-2 { transform: rotate(-45deg); }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.active { opacity: 1; transform: translateY(0); }
.btn { display: inline-block; padding: 1rem 2rem; font-family: var(--font-title); font-size: 1.2rem; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; text-align: center; color: var(--text-main); background: transparent; border: 2px solid var(--cyan); position: relative; z-index: 1; transition: 0.3s ease; cursor: pointer; clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px); }
.btn::before { content: ''; position: absolute; inset: 0; background: var(--cyan); z-index: -1; transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.btn:hover::before { transform: scaleX(1); }
.btn:hover { color: var(--bg-dark); box-shadow: 0 0 20px rgba(185, 0, 39, 0.5); }
.btn-secondary { border-color: rgba(255, 255, 255, 0.2); color: rgba(255, 255, 255, 0.7); }
.btn-secondary:hover { border-color: var(--teal); color: var(--bg-dark); }
.btn-secondary::before { background: var(--teal); }
.btn-danger { border-color: var(--danger); }
.btn-danger::before { background: var(--danger); }
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; overflow: hidden; padding: 2rem; }
.hero-bg-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 150vw; display: flex; flex-direction: column; gap: 10px; z-index: -1; opacity: 0.2; pointer-events: none; }
.hero-bg-text span { font-family: var(--font-title); font-size: clamp(6rem, 15vw, 15rem); line-height: 0.8; color: transparent; -webkit-text-stroke: 2px var(--cyan); white-space: nowrap; text-transform: uppercase; }
.hero-bg-text span:nth-child(even) { -webkit-text-stroke: 2px var(--teal); transform: translateX(-10%); }
.pre-title { font-size: clamp(0.8rem, 2vw, 1.2rem); letter-spacing: 8px; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; font-weight: 600; text-shadow: 0 0 10px rgba(255, 51, 102, 0.5); }
.hero-title { font-family: var(--font-title); font-size: clamp(5rem, 18vw, 15rem); line-height: 0.85; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem; background: linear-gradient(135deg, #fff 0%, var(--cyan) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 30px rgba(185, 0, 39, 0.4)); }
.hero-subtitle { font-size: clamp(1.2rem, 3vw, 2rem); font-weight: 300; color: #aaa; margin-bottom: 3rem; text-transform: uppercase; letter-spacing: 4px; }
.hero-cta { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.artists { padding: 8rem 2rem; background: linear-gradient(to bottom, transparent, var(--bg-darker), transparent); }
.section-title { font-family: var(--font-title); font-size: clamp(3rem, 8vw, 6rem); text-transform: uppercase; text-align: center; margin-bottom: 4rem; color: var(--text-main); letter-spacing: 4px; }
.artist-list { display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; }
.artist-row { width: 100%; text-align: center; padding: 1.5rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); transition: 0.4s ease; cursor: pointer; position: relative; }
.artist-row:first-child { border-top: 1px solid rgba(255, 255, 255, 0.05); }
.artist-name { font-family: var(--font-title); font-size: clamp(3rem, 7vw, 7rem); text-transform: uppercase; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3); transition: all 0.4s ease; position: relative; z-index: 2; }
.artist-row:hover { border-color: var(--cyan); }
.artist-row:hover .artist-name { -webkit-text-stroke: 0px; color: var(--text-main); text-shadow: 0 0 20px var(--cyan), 0 0 40px var(--teal); transform: scale(1.02); letter-spacing: 2px; }
.info-section { padding: 5rem 2rem; max-width: 1400px; margin: 0 auto; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; border: 1px solid rgba(185, 0, 39, 0.2); padding: 3rem; background: rgba(0, 0, 0, 0.4); position: relative; }
.info-item { display: flex; flex-direction: column; gap: 0.5rem; }
.info-label { color: var(--cyan); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; }
.info-value { font-family: var(--font-title); font-size: 2.5rem; line-height: 1.1; text-transform: uppercase; }
.small-muted { font-size: 1.2rem; color: #aaa; font-family: var(--font-body); }
.teal-text { color: var(--teal); }
.tickets { padding: 8rem 2rem; display: flex; justify-content: center; align-items: center; }
.ticket-card { background: rgba(255, 255, 255, 0.02); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(185, 0, 39, 0.2); padding: 4rem; text-align: center; max-width: 540px; width: 100%; position: relative; overflow: hidden; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05); }
.ticket-card::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent, rgba(255, 51, 102, 0.05), transparent); transform: rotate(45deg); pointer-events: none; }
.ticket-card > * { position: relative; z-index: 2; }
.ticket-price { font-family: var(--font-title); font-size: 5rem; color: var(--green); line-height: 1; margin-bottom: 1rem; text-shadow: 0 0 20px rgba(57, 255, 20, 0.4); }
.ticket-text { font-size: 1.1rem; color: #aaa; margin-bottom: 2.5rem; font-weight: 300; }
.ticket-form { display: flex; flex-direction: column; gap: 1rem; text-align: left; }
.ticket-form .ticket-price, .ticket-form .ticket-text { text-align: center; }
label { color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: 1px; font-size: .82rem; display: flex; flex-direction: column; gap: .5rem; }
input, select { width: 100%; padding: 1rem 1rem; border: 1px solid rgba(185, 0, 39, 0.25); background: rgba(0,0,0,.45); color: #fff; font-family: var(--font-body); font-size: 1rem; outline: none; }
input:focus, select:focus { border-color: var(--cyan); box-shadow: 0 0 18px rgba(185, 0, 39, .18); }
.footer { padding: 3rem 2rem; border-top: 1px solid rgba(255, 255, 255, 0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; background: var(--bg-darker); }
.footer-logo { font-family: var(--font-title); font-size: 2rem; letter-spacing: 2px; }
.social-links { display: flex; gap: 1.5rem; }
.social-links a { color: #fff; text-decoration: none; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; transition: color 0.3s ease; }
.social-links a:hover { color: var(--cyan); }
.backend-page { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; padding: 4rem 0; min-height: 100vh; }
.panel { background: rgba(255,255,255,.025); border: 1px solid rgba(185, 0, 39, .22); box-shadow: 0 20px 60px rgba(0,0,0,.45); padding: clamp(1.5rem, 4vw, 3rem); margin: 2rem 0; backdrop-filter: blur(10px); }
.page-title { font-family: var(--font-title); font-size: clamp(3.5rem, 10vw, 7rem); line-height: .9; text-transform: uppercase; letter-spacing: 2px; background: linear-gradient(135deg, #fff 0%, var(--cyan) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 30px rgba(185, 0, 39, .25)); }
.page-lead { color: #aaa; font-size: 1.1rem; max-width: 720px; margin-top: 1rem; }
.grid-2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; align-items: start; }
.checkout-list { display: grid; gap: 1rem; }
.summary-row { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.summary-row strong { color: var(--cyan); }
.big-total { font-family: var(--font-title); font-size: 3rem; color: var(--green); text-shadow: 0 0 20px rgba(57,255,20,.25); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .wide { grid-column: 1 / -1; }
.notice { padding: 1rem 1.25rem; border: 1px solid rgba(255, 51, 102, .25); background: rgba(255, 51, 102, .06); color: #ffd8e1; margin: 1rem 0; }
.error { border-color: rgba(255,43,106,.45); background: rgba(255,43,106,.08); color: #ffd2dd; }
.actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.order-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.order-table th, .order-table td { text-align: left; padding: 1rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.order-table th { color: var(--cyan); text-transform: uppercase; letter-spacing: 1px; font-size: .78rem; }
.ticket-preview { border: 1px solid rgba(185, 0, 39, .22); padding: 1.25rem; margin: 1rem 0; background: linear-gradient(135deg, rgba(185, 0, 39, .08), rgba(255, 51, 102, .04)); }
.ticket-code { font-family: var(--font-title); font-size: 2.2rem; color: var(--green); letter-spacing: 2px; }
.countdown { font-family: var(--font-title); color: var(--cyan); font-size: 2rem; }
@media (max-width: 768px) {
    .hero-cta { flex-direction: column; width: 100%; }
    .hero-cta .btn { width: 100%; }
    .info-grid { padding: 2rem; }
    .ticket-card { padding: 3rem 1.5rem; }
    .footer { flex-direction: column; text-align: center; }
    .grid-2, .form-grid { grid-template-columns: 1fr; }
    .form-grid .wide { grid-column: auto; }
}
@media print {
    .bg-noise, .bg-crosses, .actions, .btn { display: none !important; }
    body { background: #fff; color: #000; }
    .backend-page { width: 100%; padding: 0; }
    .panel { box-shadow: none; border: 1px solid #111; background: #fff; color: #000; page-break-inside: avoid; }
    .page-title { color: #000; -webkit-text-fill-color: #000; filter: none; }
}


/* ==============================
   FOOTER LINKS
============================== */
.footer-links {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links a {
    white-space: nowrap;
}

/* ==============================
   PHARMABOYZ MODAL
============================== */
.artist-modal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2rem !important;
    background: rgba(0, 0, 0, 0.86) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

.artist-modal.active {
    display: flex !important;
}

.artist-modal-box {
    width: min(560px, 100%) !important;
    position: relative !important;
    padding: 3rem 2rem !important;
    text-align: center !important;
    background: rgba(3, 3, 5, 0.98) !important;
    border: 1px solid rgba(185, 0, 39, 0.45) !important;
    box-shadow: 0 0 60px rgba(185, 0, 39, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.06) !important;
    clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px) !important;
}

.artist-modal-close {
    position: absolute !important;
    top: 1rem !important;
    right: 1.2rem !important;
    z-index: 3 !important;
    width: 42px !important;
    height: 42px !important;
    border: 1px solid rgba(185, 0, 39, 0.45) !important;
    background: rgba(0, 0, 0, 0.5) !important;
    color: #f0f0f0 !important;
    font-size: 2rem !important;
    line-height: 1 !important;
    cursor: pointer !important;
}

.artist-modal-close:hover {
    color: #030305 !important;
    background: #b90027 !important;
}

.artist-modal-kicker {
    position: relative !important;
    z-index: 2 !important;
    color: var(--teal) !important;
    text-transform: uppercase !important;
    letter-spacing: 5px !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    text-shadow: 0 0 12px rgba(255, 51, 102, 0.45) !important;
}

.artist-modal-box h2 {
    position: relative !important;
    z-index: 2 !important;
    font-family: var(--font-title, 'Anton', sans-serif) !important;
    font-size: clamp(2.4rem, 7vw, 4rem) !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    margin-bottom: 1rem !important;
    color: #ffffff !important;
}

.artist-modal-box p {
    position: relative !important;
    z-index: 2 !important;
    color: #aaa !important;
    margin-bottom: 2rem !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

.artist-modal-actions {
    position: relative !important;
    z-index: 2 !important;
    display: grid !important;
    gap: 1rem !important;
}

.artist-modal-btn {
    display: block !important;
    padding: 1rem 1.4rem !important;
    font-family: var(--font-title, 'Anton', sans-serif) !important;
    font-size: 1.2rem !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    color: #030305 !important;
    background: var(--cyan) !important;
    border: 2px solid var(--cyan) !important;
    transition: 0.25s ease !important;
}

.artist-modal-btn-secondary {
    background: transparent !important;
    color: #f0f0f0 !important;
    border-color: var(--teal) !important;
}

.artist-modal-btn:hover {
    box-shadow: 0 0 22px rgba(185, 0, 39, 0.55) !important;
    transform: translateY(-2px) !important;
}

.artist-modal-btn-secondary:hover {
    color: #030305 !important;
    background: var(--teal) !important;
    box-shadow: 0 0 22px rgba(255, 51, 102, 0.5) !important;
}

/* ==============================
   COOKIE CONSENT
============================== */
.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 999998;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem;
    background: rgba(3, 3, 5, 0.96);
    border: 1px solid rgba(185, 0, 39, 0.35);
    box-shadow: 0 0 40px rgba(185, 0, 39, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cookie-banner.active {
    display: flex;
}

.cookie-content strong {
    display: block;
    font-family: var(--font-title);
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: .35rem;
}

.cookie-content p {
    color: #aaa;
    margin: 0;
    line-height: 1.55;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: flex-end;
}

.cookie-btn {
    padding: .8rem 1rem;
    min-width: 160px;
    font-size: .95rem;
}

@media (max-width: 768px) {
    .footer-links {
        justify-content: center;
    }
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-actions {
        justify-content: stretch;
    }
    .cookie-btn {
        width: 100%;
    }
}