:root {
    --bg-primary: #121212;
    --bg-secondary: #1a1a1a;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-glass: rgba(255, 255, 255, 0.06);
    --gold: #D4AF37;
    --gold-light: #E8C94E;
    --gold-dark: #B8960A;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --bronze: #CD7F32;
    --champagne: #F7E7CE;
    --silver: #C0C0C0;
    --text-primary: #F5F5F5;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.5);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(212, 175, 55, 0.3);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --nav-height: 72px;
    --max-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

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

::selection {
    background: var(--gold);
    color: var(--bg-primary);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

#toast-container {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 10000;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    background: rgba(25, 25, 25, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    max-width: 420px;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-success {
    border-left: 4px solid #4CAF50;
}

.toast-success i {
    color: #4CAF50;
}

.toast-error {
    border-left: 4px solid #F44336;
}

.toast-error i {
    color: #F44336;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.section-divider span {
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px var(--gold-glow);
}

.btn-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px var(--gold-glow); }
    50% { box-shadow: 0 4px 40px var(--gold-glow), 0 0 60px rgba(212, 175, 55, 0.15); }
}

#cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 50%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/musichistory.webp') center center / cover no-repeat;
    filter: brightness(0.3) saturate(0.8);
}

.hero-particles {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(205, 127, 50, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(192, 192, 192, 0.04) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(18, 18, 18, 0.3) 0%,
        rgba(18, 18, 18, 0.6) 50%,
        var(--bg-primary) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 120px 0 60px;
}

.hero-logo-wrapper {
    max-width: 320px;
    width: 100%;
}

.hero-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.2));
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--champagne);
    max-width: 700px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-date {
    font-size: 1.05rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    gap: 24px;
    margin: 8px 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 85px;
}

.countdown-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 30px var(--gold-glow);
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 8px;
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-indicator i {
    font-size: 1rem;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.about {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    text-align: left;
}

.about-text strong {
    color: var(--text-primary);
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lineup {
    background: var(--bg-primary);
}

.lineup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lineup-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.lineup-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.lineup-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--border-glass);
    transition: all 0.4s ease;
}

.lineup-card:hover .lineup-card-img {
    border-bottom-color: var(--border-gold);
}

.lineup-card-body {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
}

.lineup-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    padding-right: 20px;
    border-right: 1px solid var(--border-glass);
}

.lineup-day {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.lineup-month {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 4px;
}

.lineup-info {
    flex: 1;
}

.lineup-artist {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.lineup-time {
    font-size: 0.85rem;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 16px;
}

.lineup-dayname {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tents {
    background: var(--bg-secondary);
}

.tents-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tents-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 10px 0;
}

.tent-card {
    cursor: pointer;
    transition: transform 0.4s ease;
    position: relative;
}

.tent-card:hover {
    transform: translateY(-6px);
}

.tent-card:active {
    transform: translateY(-2px) scale(0.97);
}

.tent-shape {
    position: relative;
    width: 100%;
    aspect-ratio: 200 / 180;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tent-svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
    pointer-events: none;
}

.tent-wall {
    fill: rgba(255, 255, 255, 0.04);
    stroke: rgba(212, 175, 55, 0.12);
    stroke-width: 1;
    transition: fill 0.4s ease, stroke 0.4s ease;
}

.tent-roof {
    fill: rgba(255, 255, 255, 0.06);
    stroke: rgba(212, 175, 55, 0.2);
    stroke-width: 1.5;
    stroke-linejoin: round;
    transition: fill 0.4s ease, stroke 0.4s ease;
}

.tent-ridge {
    stroke: rgba(212, 175, 55, 0.12);
    stroke-width: 1;
    transition: stroke 0.4s ease;
}

.tent-door {
    fill: rgba(0, 0, 0, 0.45);
    stroke: rgba(212, 175, 55, 0.1);
    stroke-width: 1;
    transition: fill 0.4s ease, stroke 0.4s ease;
}

.tent-card:hover .tent-roof {
    fill: rgba(255, 255, 255, 0.1);
    stroke: rgba(212, 175, 55, 0.45);
}

.tent-card:hover .tent-wall {
    fill: rgba(255, 255, 255, 0.07);
    stroke: rgba(212, 175, 55, 0.25);
}

.tent-card:hover .tent-door {
    fill: rgba(0, 0, 0, 0.6);
    stroke: rgba(212, 175, 55, 0.2);
}

.tent-card:hover .tent-ridge {
    stroke: rgba(212, 175, 55, 0.25);
}

.tent-face {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    pointer-events: none;
    text-align: center;
}

.tent-face .tent-icon {
    font-size: 1.8rem;
    color: var(--gold);
    transition: all 0.4s ease;
    margin-bottom: 4px;
}

.tent-card:hover .tent-face .tent-icon {
    transform: scale(1.2);
    text-shadow: 0 0 20px var(--gold-glow);
}

.tent-face .tent-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

@media (max-width: 1100px) {
    .tents-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .tents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tents-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ---- Tent Modal ---- */
.tent-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.tent-modal.active {
    opacity: 1;
    visibility: visible;
}

.tent-modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.tent-modal-wrap {
    position: relative;
    width: 90%;
    max-width: 560px;
    max-height: 80vh;
    z-index: 1;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.tent-modal.active .tent-modal-wrap {
    transform: translateY(0) scale(1);
}

.tent-modal-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(18, 18, 18, 0.98));
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-lg);
    padding: 40px 36px 36px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(212, 175, 55, 0.05);
}

.tent-modal-card::-webkit-scrollbar {
    width: 4px;
}

.tent-modal-card::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 2px;
}

.tent-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    padding: 4px;
}

.tent-modal-close:hover {
    color: var(--gold);
}

.tent-modal-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.tent-modal-icon {
    font-size: 1.8rem;
    color: var(--gold);
    min-width: 40px;
    text-align: center;
}

.tent-modal-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.tent-modal-body {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.8;
    white-space: pre-line;
}

.tent-modal-body p {
    margin-bottom: 1em;
}

/* ---- Image Placeholder ---- */
.img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.03));
    border: 2px dashed var(--border-gold);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    aspect-ratio: 16 / 9;
    width: 100%;
    min-height: 120px;
}

.img-placeholder:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(255, 255, 255, 0.05));
    border-color: var(--gold);
}

.img-placeholder .placeholder-icon {
    font-size: 1.6rem;
    color: var(--gold-dark);
    opacity: 0.6;
}

.img-placeholder-round {
    border-radius: 50%;
    aspect-ratio: 1;
    min-height: 64px;
    width: 64px;
}

.img-placeholder-sm {
    width: 60px;
    height: 60px;
    min-height: unset;
    aspect-ratio: 1;
    border-radius: 50%;
}

.img-placeholder-sm .placeholder-icon {
    font-size: 1.2rem;
}

.img-placeholder:hover .placeholder-icon {
    color: var(--gold);
    opacity: 1;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.activity-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.activity-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.activity-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--border-glass);
    transition: all 0.4s ease;
}

.activity-card:hover .activity-card-img {
    border-bottom-color: var(--border-gold);
}

.activity-card-img-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.03));
    border-bottom: 2px dashed var(--border-gold);
    color: var(--text-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-card-img-placeholder {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(255, 255, 255, 0.05));
    border-bottom-color: var(--gold);
}

.activity-card-img-placeholder .placeholder-icon {
    font-size: 2.2rem;
    color: var(--gold-dark);
    opacity: 0.6;
}

.activity-card-body {
    padding: 24px 24px 32px;
    text-align: center;
}

.activity-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.activity-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- Activity Promo (Kral Şakir) ---- */
.activity-promo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
    padding: 40px 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
}

.activity-promo-label {
    display: inline-block;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
}

.activity-promo-image {
    max-width: 380px;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border-gold);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 60px var(--gold-glow);
    transition: all 0.4s ease;
}

.activity-promo-image:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5), 0 0 80px var(--gold-glow);
}

.activity-promo-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.promo-btn {
    margin-top: 4px;
}

.tickets {
    background: var(--bg-secondary);
}

.tickets-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ticket-card {
    padding: 32px 24px 36px;
    text-align: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.ticket-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.ticket-card.featured,
.ticket-card.ticket-combo {
    border-color: var(--border-gold);
    background: rgba(212, 175, 55, 0.04);
}

.ticket-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.ticket-card-header {
    margin-bottom: 20px;
}

.ticket-day {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.ticket-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.ticket-img {
    margin-bottom: 16px;
}

.ticket-img .img-placeholder {
    width: 48px;
    height: 48px;
    min-height: unset;
    aspect-ratio: 1;
    border-radius: 50%;
    margin: 0 auto;
}

.ticket-img .img-placeholder .placeholder-icon {
    font-size: 1rem;
}

.ticket-price {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-glass);
}

.ticket-amount {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.ticket-currency {
    font-size: 1rem;
    color: var(--text-muted);
    vertical-align: super;
    margin-left: 2px;
}

.ticket-features {
    list-style: none;
    text-align: left;
    flex: 1;
    margin-bottom: 28px;
}

.ticket-features li {
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticket-features li i {
    color: var(--gold);
    font-size: 0.75rem;
}

.ticket-card .btn {
    width: 100%;
    justify-content: center;
}

.ticket-providers {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.provider-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 6px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.provider-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
}

.provider-btn img {
    max-width: 100%;
    max-height: 24px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.contact {
    background: var(--bg-primary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
}

.contact-card:hover {
    border-color: var(--border-gold);
    background: rgba(212, 175, 55, 0.06);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.contact-card:hover .contact-card-icon {
    background: var(--gold);
    color: var(--bg-primary);
    box-shadow: 0 0 20px var(--gold-glow);
}

.contact-card-body h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-glass);
    width: 100%;
    transition: all 0.4s ease;
}

.contact-map:hover {
    border-color: var(--border-gold);
}

.contact-map iframe {
    width: 100%;
    height: 240px;
    display: block;
    border: none;
    filter: grayscale(0.3) invert(0.9) hue-rotate(180deg) saturate(0.5);
    transition: filter 0.4s ease;
}

.contact-map iframe:hover {
    filter: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--border-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    font-size: 0.9rem;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.1);
    color: #F44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.kvkk-consent {
    margin: 4px 0 2px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-glass);
    border-radius: 4px;
    background: var(--bg-glass);
    transition: all 0.3s ease;
    position: relative;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--gold);
    border-color: var(--gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bg-primary);
    font-size: 0.7rem;
}

.checkbox-label input[type="checkbox"]:focus-visible + .checkbox-custom {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.checkbox-text {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-text a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.checkbox-text a:hover {
    color: var(--gold-light);
}

.btn-submit {
    align-self: flex-start;
}

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-glass);
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 360px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.faq {
    background: var(--bg-primary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-gold);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    font-size: 0.85rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    padding: 0 24px 18px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-updated {
    margin-top: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
    opacity: 0.7;
}

/* ======== RESPONSIVE BREAKPOINTS ======== */

@media (max-width: 1024px) {
    .tickets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-text {
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    .about-image .img-placeholder {
        max-width: 400px;
    }
}

@media (max-width: 900px) {
    .section-title {
        font-size: 2.2rem;
    }

    .lineup-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 24px;
        gap: 4px;
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.4s ease;
        pointer-events: none;
        border-bottom: 1px solid var(--border-glass);
        z-index: 1000;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-toggle {
        display: flex;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.15rem;
    }

    .countdown {
        gap: 16px;
    }

    .countdown-item {
        min-width: 65px;
    }

    .countdown-number {
        font-size: 2.2rem;
    }

    .hero-logo-wrapper {
        max-width: 240px;
    }

    .lineup-grid {
        grid-template-columns: 1fr;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .activity-promo {
        padding: 28px 16px;
        margin-bottom: 32px;
    }

    .activity-promo-image {
        max-width: 300px;
    }

    .tickets-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-map iframe {
        height: 220px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

    .btn-submit {
        align-self: stretch;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 56px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .hero-logo-wrapper {
        max-width: 200px;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-date {
        font-size: 0.85rem;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-item {
        min-width: 55px;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    .hero-content {
        gap: 20px;
        padding: 100px 0 40px;
    }

    .lineup-card-body {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 16px;
    }

    .lineup-date {
        border-right: none;
        padding-right: 0;
        flex-direction: row;
        gap: 8px;
        min-width: unset;
    }

    .tickets-grid {
        max-width: 340px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 16px;
        gap: 14px;
    }

    .contact-card-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 0.95rem;
    }

    .contact-card-body h4 {
        font-size: 0.85rem;
    }

    .contact-card-body p {
        font-size: 0.8rem;
    }

    .contact-map iframe {
        height: 180px;
    }

    .footer-content {
        gap: 32px;
    }

    .footer {
        padding: 40px 0 24px;
    }
}

@media (max-width: 480px) {
    .tent-face .tent-icon {
        font-size: 1.2rem;
    }

    .tent-face .tent-title {
        font-size: 0.78rem;
    }

    .tent-modal-card {
        padding: 28px 20px 24px;
    }

    .tent-modal-title {
        font-size: 1.1rem;
    }

    .tent-modal-body {
        font-size: 0.85rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-cards-grid {
        gap: 12px;
    }

    .contact-card {
        padding: 14px;
        gap: 12px;
    }

    .contact-card-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 0.85rem;
    }

    .contact-card-body h4 {
        font-size: 0.8rem;
    }

    .contact-card-body p {
        font-size: 0.75rem;
    }

    .contact-map iframe {
        height: 160px;
    }

    .countdown {
        gap: 8px;
    }

    .countdown-item {
        min-width: 48px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .activities-grid {
        gap: 16px;
    }

    .activity-promo {
        padding: 20px 12px;
        margin-bottom: 24px;
    }

    .activity-promo-image {
        max-width: 260px;
    }

    .activity-card-body {
        padding: 18px 16px 24px;
    }

    .activity-title {
        font-size: 1rem;
    }

    .activity-desc {
        font-size: 0.82rem;
    }

    .lineup-artist {
        font-size: 1.1rem;
    }

    .ticket-card {
        padding: 24px 16px 28px;
    }

    .ticket-amount {
        font-size: 2.2rem;
    }
}

@media (max-width: 380px) {
    .tent-face .tent-icon {
        font-size: 1rem;
    }

    .tent-face .tent-title {
        font-size: 0.7rem;
    }

    .countdown-item {
        min-width: 40px;
    }

    .countdown-number {
        font-size: 1.3rem;
    }

    .hero-logo-wrapper {
        max-width: 160px;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .lineup-day {
        font-size: 1.6rem;
    }

    .contact-card {
        padding: 12px;
        gap: 10px;
    }

    .contact-card-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 0.75rem;
    }

    .contact-card-body h4 {
        font-size: 0.75rem;
    }

    .contact-card-body p {
        font-size: 0.7rem;
    }

    .contact-map iframe {
        height: 140px;
    }

    .social-icon {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
}

/* ======== COOKIE BANNER ======== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9997;
    background: rgba(18, 18, 18, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-glass);
    padding: 20px 0;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
    color: var(--gold-light);
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* ======== COOKIE MODAL ======== */
.cookie-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

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

.cookie-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cookie-modal-content {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    max-width: 560px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    animation: modalIn 0.3s ease;
}

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

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px 16px;
    border-bottom: 1px solid var(--border-glass);
}

.cookie-modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cookie-modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.cookie-modal-close:hover {
    color: var(--text-primary);
    background: var(--bg-glass);
}

.cookie-modal-body {
    padding: 20px 28px;
}

.cookie-modal-body > p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.cookie-category {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 12px;
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.cookie-category-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-badge-always {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(76, 175, 80, 0.12);
    color: #4CAF50;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-toggle input {
    display: none;
}

.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: background 0.3s ease;
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--gold);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(20px);
}

.cookie-modal-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px 24px;
    border-top: 1px solid var(--border-glass);
}

.cookie-modal-footer .btn {
    flex: 1;
    justify-content: center;
}

/* ======== COOKIE BANNER RESPONSIVE ======== */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .cookie-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-modal-footer .btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .cookie-banner-actions {
        flex-direction: column;
    }

    .cookie-banner-actions .btn-sm {
        width: 100%;
        min-width: unset;
    }

    .cookie-category-header {
        flex-direction: column;
    }
}

/* ======== PARTNERS & SPONSORS ======== */
.partners {
    background: var(--bg-primary);
    overflow: hidden;
}

.partners-marquee {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.partners-track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: partners-marquee 25s linear infinite;
}

.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}

@keyframes partners-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

.partner-logo-card {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.partner-logo-card:hover {
    border-color: var(--border-gold);
    background: rgba(212, 175, 55, 0.06);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.partner-logo-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.4s ease;
}

.partner-logo-card:hover img {
    transform: scale(1.05);
}

.partner-logo-lg img {
    max-width: 140%;
    max-height: 140%;
}

@media (max-width: 768px) {
    .partner-logo-card {
        width: 140px;
        height: 140px;
        padding: 18px;
    }

    .partners-track {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .partner-logo-card {
        width: 110px;
        height: 110px;
        padding: 14px;
    }

    .partners-track {
        gap: 14px;
        animation-duration: 18s;
    }
}
