/* ==========================================
   SAKARYA MÃœZÄ°K FESTÄ°VALÄ°
   Ultra Modern, Minimal, Professional Design
   ========================================== */

:root {
    --bg: #0A0A0F;
    --surface: #14141F;
    --elevated: #1C1C2B;
    --border: rgba(255, 255, 255, 0.06);
    --accent: #FF3366;
    --accent-hover: #FF4477;
    --text: #FFFFFF;
    --text-secondary: #B4B8C5;
    --text-muted: #8B92A8;
    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Poppins', system-ui, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    scroll-padding-top: 0;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: manipulation;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.25s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

::selection {
    background: var(--accent);
    color: white;
}

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

.container-fluid {
    width: 100%;
    max-width: 100%;
    padding: 0 var(--spacing-lg);
}

.section-padding {
    padding: 4rem 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1.25rem;
    background: rgba(255, 51, 102, 0.08);
    border: 1px solid rgba(255, 51, 102, 0.2);
    border-radius: 9999px;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-description {
    font-size: 1.063rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 600px;
    margin-bottom: 2rem;
}

.section-header.centered {
    text-align: center;
    margin: 0 auto var(--spacing-xl);
}

.section-header.centered .section-description {
    margin: 0 auto;
}

.section-header.right-aligned {
    text-align: right;
}

.section-header.right-aligned .section-badge {
    margin-left: auto;
    margin-right: 0;
}

.section-header.right-aligned .section-description {
    margin-left: auto;
    margin-right: 0;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.938rem;
    white-space: nowrap;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    min-height: 44px;
    box-sizing: border-box;
}

.btn-primary {
    background: var(--accent);
    color: white;
    border: 1px solid transparent;
}

.btn-primary:hover {
    /* No hover effect */
}

.btn-primary:active {
    background: var(--accent-hover);
    transform: scale(0.98);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    min-height: 44px;
}

.btn-secondary:hover {
    /* No hover effect */
}

.btn-secondary:active {
    transform: scale(0.98);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    height: 52px;
}

.btn-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

@media (hover: none) {
    .btn-primary:hover,
    .btn-secondary:hover,
    .artist-card:hover,
    .tab-btn:hover,
    .nav-link:hover,
    .venue-detail-link:hover,
    .faq-question:hover {
        transform: none;
    }
    
    .artist-card:hover .artist-image img {
        transform: none;
    }
    
    .artist-card:hover .artist-name,
    .nav-link:hover {
        color: inherit;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: white;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 10px;
}

.logo-text {
    font-size: 0.813rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
}

.nav-link {
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.25s ease;
}

.nav-link:hover {
    /* No hover effect */
}

.nav-link:hover::after {
    /* No hover effect */
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

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

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.08;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(10, 10, 15, 0.8), rgba(10, 10, 15, 0.95));
}

.pattern-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 40%, rgba(255, 51, 102, 0.08) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    width: 100%;
    padding: 3rem 1rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge span {
    display: block;
    text-align: center;
    padding: 0 0.25rem;
}

.hero-title {
    margin-bottom: 1rem;
}

.title-main {
    display: block;
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    word-break: break-word;
    max-width: 100%;
}

.hero-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    width: 100%;
    max-width: 100%;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.938rem;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.detail-item .icon {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: var(--surface);
    border-radius: var(--radius);
    min-width: 90px;
}

.countdown-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--accent);
}

.countdown-label {
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-muted);
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}

.hero-cta .btn-large {
    min-width: 200px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* About */
.about {
    background: var(--bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
}

.image-wrapper img,
.image-wrapper .about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    opacity: 1 !important;
}

.about-video {
    display: block;
    pointer-events: none;
}

.about-video::-webkit-media-controls {
    display: none !important;
}

.about-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.image-decoration {
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(255, 51, 102, 0.2);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.25s ease;
}

.stat-item:hover {
    background: var(--elevated);
    border-color: rgba(255, 51, 102, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--accent);
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
}

/* Line-up */
.lineup {
    background: var(--surface);
    overflow-x: hidden;
}

.lineup-header-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 3rem;
    margin-bottom: 1.5rem;
}

.lineup-left {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow-x: hidden;
}

.lineup-tabs {
    display: flex;
    gap: 0.5rem;
    background: var(--bg);
    border-radius: 999px;
    padding: 0.75rem;
    width: fit-content;
    margin-bottom: auto;
}

.lineup-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}

.lineup-info svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--accent);
    stroke-width: 2;
    opacity: 0.9;
}

.lineup-info span {
    font-size: 0.938rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.lineup-header-wrapper .section-header.right-aligned {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    margin: 0;
}

.lineup-header-wrapper .section-badge {
    margin-bottom: 1rem;
}

.lineup-header-wrapper .section-title {
    margin-bottom: 0;
}

.tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 0.875rem;
    background: transparent;
    border: none;
    border-radius: 999px;
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.tab-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
}

.tab-btn:active {
    transform: scale(0.98);
}

.tab-btn.active {
    background: var(--accent);
    color: white;
}

.tab-btn.active .tab-date {
    color: rgba(255, 255, 255, 0.9);
}

.lineup-content {
    display: none;
}

.lineup-content.active {
    display: block;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.artist-card {
    position: relative;
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.25s ease;
}

.artist-card:hover {
    /* No transform */
}

.artist-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--surface);
}

.artist-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.4) 100%);
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1 !important;
    transition: transform 0.3s ease;
}

.artist-card:hover .artist-image img {
    transform: scale(1.03);
}

.artist-info {
    padding: 1.25rem 1.5rem;
    background: var(--bg);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.artist-card:hover .artist-info {
    border-color: var(--accent);
}

.artist-name {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--text);
    transition: color 0.25s ease;
    text-align: center;
    width: 100%;
}

.artist-card:hover .artist-name {
    color: var(--accent);
}

.artist-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.875rem;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    color: var(--accent);
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border-radius: 9999px;
    white-space: nowrap;
}

.artist-badge svg {
    width: 13px;
    height: 13px;
}

/* Sürpriz Sanatçı Modu */
.artist-card.surprise .artist-image img {
    filter: blur(20px);
}

.artist-card.surprise .artist-name,
.artist-card.surprise .artist-badge {
    display: none;
}

.artist-card.surprise .artist-info {
    padding: 1.5rem;
    justify-content: center;
}

.artist-card.surprise .artist-info::after {
    content: 'Henüz Açıklanmadı';
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Venue */
.venue {
    background: var(--bg);
}

.venue-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.venue-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0;
    margin-bottom: 0;
}

.venue-detail-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    position: relative;
}

.venue-detail-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.venue-detail-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.venue-detail-link:active {
    background: rgba(255, 255, 255, 0.06);
}

.venue-detail-link .link-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 18px;
    height: 18px;
    color: var(--accent);
    opacity: 0.6;
    transition: all 0.2s ease;
}

.venue-detail-link:hover .link-icon {
    opacity: 1;
}

.venue-detail-item .icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.venue-detail-item strong {
    display: block;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.venue-detail-item p {
    color: var(--text-secondary);
}

.venue-map {
    width: 100%;
    height: 100%;
    display: flex;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.venue-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1 !important;
    display: block;
}

/* Gallery */
.gallery {
    background: var(--surface);
    overflow-x: hidden;
}

.gallery-header-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 3rem;
    margin-bottom: 0rem;
}

.gallery-left {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    align-items: flex-start;
    overflow-x: hidden;
}

.gallery-tabs {
    display: flex;
    gap: 0.375rem;
    background: var(--bg);
    border-radius: 999px;
    padding: 0.5rem;
    width: fit-content;
    height: fit-content;
    margin: 0 0 auto 0;
}

.gallery-header-wrapper .section-header.right-aligned {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    margin: 0;
}

.gallery-header-wrapper .section-badge {
    margin-bottom: 1rem;
}

.gallery-header-wrapper .section-title {
    margin-bottom: 0;
}

.gallery-header-wrapper .gallery-meta {
    margin: 0;
    padding: 0;
}

.gallery-content {
    display: none;
}

.gallery-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.gallery-info {
    margin-bottom: 2rem;
}

.gallery-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    width: fit-content;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
    padding: 0.625rem 0.875rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
}

.meta-item:first-child svg {
    transform: translateY(-1px);
}

.meta-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--accent);
    stroke-width: 1.5;
    opacity: 0.9;
}

.gallery-grid {
    display: flex;
    gap: 0;
    padding: 2rem 0;
    overflow: visible;
    width: 100%;
    justify-content: center;
    will-change: scroll-position;
}

.gallery-item.postcard {
    flex: 0 0 auto;
    width: 380px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    position: relative;
    margin-left: -40px;
}

.gallery-item.postcard:first-child {
    margin-left: 0;
}

.gallery-image {
    width: 100%;
    height: 380px;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1 !important;
    border-radius: 0;
}

.postcard-stamp {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.813rem;
    font-weight: 800;
    border: 2px solid white;
}

/* FAQ */
.faq {
    background: var(--bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(255, 51, 102, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 32px;
    text-align: left;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    background: transparent;
    border: none;
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0;
}

.faq-answer-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Desktop only padding */
@media (min-width: 769px) {
    .faq-answer-content {
        padding: 0rem 2rem 1rem;
    }
}

/* Contact */
.contact {
    background: var(--surface);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg);
    border-radius: var(--radius);
}

.contact-method .icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-method strong {
    display: block;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-method p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-method a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-method a:hover {
    color: var(--accent);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-xl);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem var(--spacing-sm);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: inherit;
    font-size: 0.938rem;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
    min-height: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--elevated);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

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

.contact-form button[type="submit"] {
    grid-column: 1 / -1;
    justify-self: start;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
    margin-top: 0;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--text);
    letter-spacing: -0.02em;
}

.footer-subtitle {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: var(--text);
}

.footer-desc {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.938rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social .social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-links li a {
    color: var(--text-secondary);
    font-size: 0.938rem;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.footer-payment {
    display: flex;
    align-items: center;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.payment-icon {
    height: 24px;
    width: auto;
    opacity: 0.7;
}

/* Old Footer Styles - Kept for compatibility */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 1rem 0;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-secondary);
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-column h4 {
    font-size: 0.938rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-secondary);
    font-size: 0.938rem;
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-credit a {
    color: var(--accent);
    font-weight: 600;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.6s ease;
}

.slide-up {
    animation: slideUp 0.6s ease;
}

.slide-up.delay-1 {
    animation-delay: 0.15s;
    animation-fill-mode: backwards;
}

.slide-up.delay-2 {
    animation-delay: 0.3s;
    animation-fill-mode: backwards;
}

.slide-up.delay-3 {
    animation-delay: 0.45s;
    animation-fill-mode: backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
    
    .section-padding {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: clamp(1.875rem, 4vw, 2.5rem);
    }
    
    .about-content,
    .venue-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        justify-items: center;
        text-align: center;
    }
    
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Artist card - daha az oval, kompakt */
    .artist-card {
        background: var(--bg);
        border-radius: 12px;
        overflow: hidden;
    }
    
    .artist-image {
        width: 100%;
        aspect-ratio: 1/1;
        overflow: hidden;
        position: relative;
    }
    
    .artist-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .artist-info {
        padding: 1rem 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg);
        border-top: 1px solid var(--border);
    }
    
    .artist-name {
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0;
        color: var(--text);
        text-align: center;
        width: 100%;
        line-height: 1.2;
    }
    
    .artist-badge {
        position: absolute;
        top: 0.625rem;
        right: 0.625rem;
        z-index: 10;
        display: flex;
        align-items: center;
        gap: 0.25rem;
        padding: 0.375rem 0.75rem;
        background: rgba(10, 10, 15, 0.9);
        backdrop-filter: blur(10px);
        color: var(--accent);
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.3px;
        text-transform: uppercase;
        border-radius: 9999px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .artist-badge svg {
        width: 12px;
        height: 12px;
        flex-shrink: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .countdown {
        gap: 0.75rem;
    }
    
    .countdown-item {
        min-width: 80px;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 2rem;
        max-width: 100%;
    }
    
    .container-fluid {
        padding: 0 2rem;
    }
    
    .section-padding {
        padding: 1.5rem 0;
    }
    
    .section-header {
        text-align: center;
    }
    
    .section-badge {
        display: inline-block;
        margin: 0 auto 1rem;
    }
    
    .section-title {
        font-size: clamp(1.625rem, 5vw, 2rem);
        margin-bottom: 1.25rem;
        text-align: center;
    }
    
    .section-description {
        font-size: 0.938rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .logo-text {
        font-size: 0.75rem;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(13, 13, 20, 0.98);
        backdrop-filter: blur(30px) saturate(150%);
        -webkit-backdrop-filter: blur(30px) saturate(150%);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.05);
        z-index: 900;
        gap: 0.5rem;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
    }

    /* Mobile: Remove margin from authButtons, keep side by side */
    #authButtons {
        margin-left: 0 !important;
        flex-direction: row;
        width: 100%;
        gap: 0.75rem !important;
    }
    
    .nav-link {
        display: block;
        padding: 0.875rem 0;
        font-size: 1rem;
    }
    
    .nav-menu .btn-primary,
    .nav-menu .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero-details {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
        width: 100%;
        padding: 0 1rem;
    }
    
    .detail-item {
        font-size: 0.938rem;
        width: auto;
        justify-content: center;
    }
    
    .countdown {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 0.875rem 0.5rem;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-cta .btn-large {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .about-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        width: 100%;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        min-width: 0;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .lineup-header-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 1rem 0;
    }
    
    .lineup-left {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
        align-items: center;
        gap: 1.5rem;
    }
    
    .lineup-tabs {
        width: 100%;
        overflow-x: visible;
        overflow-y: visible;
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 0.75rem;
        gap: 0.5rem;
        background: var(--bg);
        border-radius: 999px;
    }
    
    .lineup-left {
        position: static;
    }
    
    .lineup-left::after {
        display: none;
    }
    
    .lineup-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .lineup-info {
        justify-content: center;
        text-align: center;
    }
    
    .lineup-header-wrapper .section-header.right-aligned {
        grid-column: 1;
        grid-row: 1;
        text-align: center;
    }
    
    .lineup-header-wrapper .section-badge,
    .lineup-header-wrapper .section-title {
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-header.right-aligned {
        text-align: center;
    }
    
    .section-header.right-aligned .section-badge,
    .section-header.right-aligned .section-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .tab-btn {
        flex: 1;
        min-width: 0;
        height: 45px;
        padding: 0 0.875rem;
        font-size: 0.875rem;
        white-space: nowrap;
    }
    
    .gallery-header-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 1rem 0;
    }
    
    .gallery-left {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
        align-items: center;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .gallery-tabs {
        width: 100%;
        overflow-x: visible;
        overflow-y: visible;
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 0.5rem;
        gap: 0.375rem;
        background: var(--bg);
        border-radius: 999px;
    }
    
    .gallery-left::after {
        display: none;
    }
    
    .gallery-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .gallery-header-wrapper .section-header.right-aligned {
        grid-column: 1;
        grid-row: 1;
        text-align: center;
    }
    
    .gallery-meta {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .meta-item {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
    
    .meta-item svg {
        width: 16px;
        height: 16px;
    }
    
    .lineup-info {
        font-size: 0.875rem;
    }
    
    .lineup-info svg {
        width: 16px;
        height: 16px;
    }
    
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
    
    /* Artist card - daha az oval, Ã§ok kompakt */
    .artist-card {
        background: var(--bg);
        border-radius: 14px;
        overflow: hidden;
    }
    
    .artist-image {
        width: 100%;
        aspect-ratio: 1/1;
        overflow: hidden;
        position: relative;
    }
    
    .artist-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .artist-info {
        padding: 0.875rem 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg);
        border-top: 1px solid var(--border);
    }
    
    .artist-name {
        font-size: 0.938rem;
        font-weight: 700;
        letter-spacing: 0;
        color: var(--text);
        text-align: center;
        width: 100%;
        line-height: 1.2;
    }
    
    .artist-badge {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        z-index: 10;
        display: flex;
        align-items: center;
        gap: 0.2rem;
        padding: 0.25rem 0.5rem;
        background: rgba(10, 10, 15, 0.9);
        backdrop-filter: blur(10px);
        color: var(--accent);
        font-size: 0.625rem;
        font-weight: 600;
        letter-spacing: 0.2px;
        text-transform: uppercase;
        border-radius: 9999px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .artist-badge svg {
        width: 10px;
        height: 10px;
        flex-shrink: 0;
    }
    
    .artist-badge svg {
        width: 9px;
        height: 9px;
        flex-shrink: 0;
    }
    
    .artist-name {
        font-size: 1rem;
        font-weight: 800;
        white-space: normal;
        line-height: 1.2;
        width: 100%;
    }
    
    .venue-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
        text-align: center;
    }
    
    .venue-box,
    .about-text {
        padding: 1.75rem;
        width: 100%;
    }
    
    .gallery {
        overflow: visible;
    }
    
    .gallery-grid {
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        padding: 2.5rem 0;
        padding-bottom: 2rem;
        justify-content: flex-start;
        gap: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .gallery-grid::-webkit-scrollbar {
        height: 3px;
    }
    
    .gallery-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        margin: 0 2rem;
    }
    
    .gallery-grid::-webkit-scrollbar-thumb {
        background: var(--accent);
        border-radius: 10px;
    }
    
    .gallery-item.postcard {
        width: 280px;
        max-width: 280px;
        min-width: 280px;
        scroll-snap-align: center;
        margin-left: -40px;
        flex-shrink: 0;
    }
    
    .gallery-item.postcard:first-child {
        margin-left: 1.5rem;
    }
    
    .gallery-item.postcard:last-child {
        margin-right: 1.5rem;
    }
    
    .gallery-image {
        height: 280px;
        width: 100%;
    }
    
    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
        padding: 1.75rem;
        width: 100%;
    }
    
    /* Footer Responsive - 768px */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .footer-payment {
        width: 100%;
    }
    
    .payment-icons {
        width: 100%;
        justify-content: flex-start;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        width: 100%;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 1.25rem;
        --spacing-xl: 2rem;
        --spacing-2xl: 2.5rem;
    }
    
    .container {
        padding: 0 2rem;
        max-width: 100%;
    }
    
    .container-fluid {
        padding: 0 1rem;
    }
    
    .section-padding {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .section-description {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }
    
    .logo-text {
        font-size: 0.625rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 0.813rem;
        border-radius: 8px;
    }
    
    .navbar {
        padding: 1.25rem 0;
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 70px;
    }
    
    .hero-content {
        padding: 1rem 1rem;
    }
    
    .hero-badge span {
        font-size: 0.938rem;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .detail-item {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
        white-space: normal;
    }
    
    .detail-item .icon {
        width: 16px;
        height: 16px;
    }
    
    .countdown {
        gap: 0.375rem;
        margin-bottom: 1rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 1.25rem 0.75rem;
    }
    
    .countdown-value {
        font-size: 1.75rem;
    }
    
    .countdown-label {
        font-size: 0.625rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
    
    .scroll-indicator {
        bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .about-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        width: 100%;
    }
    
    .stat-item {
        padding: 1.25rem 0.75rem;
        min-width: 0;
    }
    
    .tab-btn {
        flex: 1;
        min-width: 0;
        height: 45px;
        padding: 0 0.875rem;
        font-size: 0.875rem;
        white-space: nowrap;
    }
    
    .artist-time {
        font-size: 0.688rem;
        padding: 0.375rem 0.875rem;
    }
    
    .venue-box,
    .about-text {
        padding: 0rem;
        width: 100%;
    }
    
    .gallery-item.postcard {
        width: 240px;
        max-width: 240px;
        min-width: 240px;
    }
    
    .gallery-image {
        height: 240px;
        width: 100%;
    }
    
    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        width: 100%;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        width: 100%;
    }
    
    .faq-question {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
        width: 100%;
    }
    
    .faq-answer p {
        padding: 0.875rem 1rem;
        font-size: 0.813rem;
    }
    
    /* Footer Responsive - 480px */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-title {
        font-size: 1.25rem;
    }
    
    .footer-subtitle {
        font-size: 0.875rem;
    }
    
    .footer-desc {
        font-size: 0.875rem;
    }
    
    .footer-links {
        gap: 0;
    }
    
    .footer-links li a {
        font-size: 0.875rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-top: 1rem;
    }
    
    .footer-copyright {
        font-size: 0.813rem;
    }
    
    .payment-icons {
        padding: 0.375rem 0.75rem;
    }
    
    .payment-icon {
        height: 20px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.75rem;
        font-size: 0.938rem;
    }
}

/* Registration Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem;
    z-index: 1;
    animation: modalSlideIn 0.3s ease;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: var(--surface);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--surface);
    color: var(--text);
    font-size: 1.5rem;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--accent);
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 2.5rem;
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 0.938rem;
    line-height: 1.5;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.register-form > .simple-checkbox:first-of-type {
    margin-top: -0.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.email-info {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 51, 102, 0.2);
    border-radius: 4px;
    font-size: 0.688rem;
    font-weight: 500;
    color: var(--accent);
    white-space: nowrap;
}

.email-info svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

#emailHint {
    color: var(--accent);
    font-weight: 500;
}

.email-label-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.student-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.student-checkbox label {
    font-size: 0.813rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.form-group input,
.form-group select {
    padding: 0.875rem 1.125rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.938rem;
    font-family: var(--font-primary);
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 51, 102, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
}

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

.form-group small {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: -0.25rem;
}

.form-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
    margin: 1rem 0;
}

#studentFields {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
    }
    to {
        opacity: 1;
        max-height: 500px;
        overflow: visible;
    }
}

.form-checkbox {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    padding: 1.125rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.form-checkbox:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 51, 102, 0.3);
}

.simple-checkbox {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    margin: 0;
    padding: 0;
}

.simple-checkbox + .simple-checkbox {
    margin-top: -0.75rem;
}

.form-checkbox input[type="checkbox"],
.simple-checkbox input[type="checkbox"] {
    margin: 0.125rem 0 0 0;
    flex-shrink: 0;
    cursor: pointer;
    -webkit-appearance: auto !important;
    appearance: auto !important;
    width: auto !important;
    height: auto !important;
    min-height: auto !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
}

.student-checkbox input[type="checkbox"] {
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
    -webkit-appearance: auto !important;
    appearance: auto !important;
    width: auto !important;
    height: auto !important;
    min-height: auto !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
}

.form-checkbox label,
.simple-checkbox label {
    font-size: 0.813rem;
    color: var(--text-secondary);
    line-height: 1.25;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.form-checkbox label a,
.simple-checkbox label a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.form-checkbox label a:hover,
.simple-checkbox label a:hover {
    text-decoration: underline;
}

.register-form .btn-primary {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-family: var(--font-display);
    font-size: 0.938rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

/* Account Modal */
.account-modal {
    max-width: 800px;
}

.account-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}

.account-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--surface);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-avatar svg {
    width: 40px;
    height: 40px;
    color: var(--accent);
}

.account-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.account-header p {
    color: var(--text-secondary);
    font-size: 0.938rem;
}

.account-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.account-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-secondary);
    font-size: 0.938rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.account-tab:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.02);
}

.account-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.account-tab svg {
    flex-shrink: 0;
}

.account-content {
    min-height: 300px;
}

.account-panel {
    display: none;
}

.account-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.account-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-box {
    padding: 1rem;
    background: rgba(255, 51, 102, 0.05);
    border: 1px solid rgba(255, 51, 102, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
}

.info-box p,
.info-box span {
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.empty-state {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-state svg {
    margin: 0 auto 1.5rem;
    color: var(--text-muted);
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.empty-state p {
    color: var(--text-secondary);
    font-size: 0.938rem;
}

.settings-section {
    margin-bottom: 2rem;
}

.settings-section h3 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.settings-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.settings-item:last-child {
    margin-bottom: 0;
}

.settings-item strong {
    display: block;
    font-size: 0.938rem;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.settings-item p {
    font-size: 0.813rem;
    color: var(--text-secondary);
    margin: 0;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: 0.3s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: var(--text-secondary);
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--accent);
    border-color: var(--accent);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(22px);
    background: white;
}

.danger-zone {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.danger-zone h3 {
    color: #FF4444;
}

.btn-danger {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid #FF4444;
    color: #FF4444;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.btn-danger:hover {
    background: #FF4444;
    color: white;
}

.account-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: center;
}

.account-footer .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .modal {
        padding: 0.5rem;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
        max-height: 95vh;
        border-radius: var(--radius);
    }
    
    .modal-header {
        margin-bottom: 2rem;
        padding-bottom: 1.25rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-header p {
        font-size: 0.875rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .register-form {
        gap: 1.25rem;
    }
    
    .account-tabs {
        gap: 0.25rem;
    }
    
    .account-tab {
        padding: 0.875rem 0.5rem;
        font-size: 0.813rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .account-tab svg {
        width: 20px;
        height: 20px;
    }
    
    .settings-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .settings-item button {
        width: 100%;
    }
    
    .form-group label {
        font-size: 0.813rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }
    
    .form-checkbox {
        padding: 1rem;
    }
    
    .register-form .btn-primary {
        padding: 0.875rem 1.75rem;
        font-size: 0.938rem;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 1.5rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.25rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.75rem 0.875rem;
    }
    
    .form-checkbox {
        padding: 0.875rem;
    }
    
    .form-checkbox label {
        font-size: 0.75rem;
    }
}

/* ==========================================
   ACCESSIBILITY ENHANCEMENTS
   ========================================== */

/* Focus States - Keyboard Navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.tab-btn:focus-visible,
.nav-link:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 100000;
    border-radius: 0 0 8px 0;
}

.skip-to-content:focus {
    top: 0;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .scroll-indicator {
        animation: none !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --text-secondary: #E0E0E0;
        --text-muted: #CCCCCC;
        --border: rgba(255, 255, 255, 0.3);
    }
    
    .btn-primary {
        border: 2px solid var(--accent);
    }
    
    .btn-secondary {
        border: 2px solid var(--text);
    }
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-menu-toggle,
    .cookie-consent,
    .scroll-indicator,
    .btn-primary,
    .btn-secondary {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
}

/* CSS Cache Buster - 1767444666 */
/* Footer Fix - Cache Bust: 1766938740 */
