/**
 * Meşk FM - Ana CSS
 * Premium Light Theme with Rose/Red Branding
 */

/* ========================================
   CSS DEĞİŞKENLERİ
======================================== */
:root {
    /* Ana Renkler - Rose/Red Theme */
    --primary: #DB3552;
    --primary-light: #E84A6F;
    --primary-dark: #b02a42;
    --accent: #C9A244;

    /* Açık Arka Plan Tonları */
    --background: #FFFFFF;
    --card: #F9FAFB;
    --card-light: #F3F4F6;
    --border: #E5E7EB;

    /* Koyu Metin Renkleri */
    --text: #111827;
    --text-muted: #6B7280;
    --text-light: #374151;

    /* Efektler - Light Theme */
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.08);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 20px rgba(219, 53, 82, 0.2);

    /* Gradientler */
    --gradient-primary: linear-gradient(135deg, #DB3552, #E84A6F);
    --gradient-hero: linear-gradient(135deg, rgba(219, 53, 82, 0.1), rgba(201, 162, 68, 0.1));

    /* Tipografi */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;

    /* Diğer */
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: all 0.3s ease;
    --header-height: 80px;
    --player-height: 80px;
    --primary-rgb: 219, 53, 82;
}


/* ========================================
   RESET & BASE
======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

ul,
ol {
    list-style: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

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

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

/* Selection */
::selection {
    background: rgba(219, 53, 82, 0.3);
    color: var(--primary-dark);
}

/* ========================================
   UTILITY CLASSES
======================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 40px 0;
}

.section-dark {
    background-color: var(--card);
}

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

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

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

.font-serif {
    font-family: var(--font-serif);
}

.font-light {
    font-weight: 300;
}

.font-medium {
    font-weight: 500;
}

.font-bold {
    font-weight: 700;
}

.mt-2 {
    margin-top: 8px;
}

.mt-4 {
    margin-top: 16px;
}

.mt-6 {
    margin-top: 24px;
}

.mt-8 {
    margin-top: 32px;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-6 {
    margin-bottom: 24px;
}

.mb-8 {
    margin-bottom: 32px;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text);
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    font-weight: 300;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #000;
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(217, 119, 6, 0.35);
}

.btn-secondary {
    background: var(--card-light);
    color: var(--text);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: var(--border);
    border-color: rgba(217, 119, 6, 0.3);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   HEADER (LIGHT THEME PREMIUM)
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

/* Scroll durumunda header */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    height: 70px;
}

/* Header altındaki çizgiyi sadece scroll durumunda göster */
.header::after {
    display: none;
}

.header.scrolled::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(219, 53, 82, 0.3) 20%,
            var(--primary) 50%,
            rgba(219, 53, 82, 0.3) 80%,
            transparent 100%);
    opacity: 0.6;
    box-shadow: 0 1px 10px rgba(219, 53, 82, 0.2);
    display: block;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 50px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

/* Logo (Optimize Edildi) */
.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

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

/* Scroll edildiğinde header küçülürse logo da uyum sağlar (JS ile class eklenebilir) */
.header.scrolled .logo-img {
    height: 50px;
    margin-top: 0;
}

/* Hero Overlay (Hafif Şeffaf Karartma) */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Daha açık overlay - açık tema için */
    background:
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}

/* Alt Bitiş - Fade Effects */
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Beyaz arka plana geçiş */
    background: linear-gradient(to bottom,
            transparent 0%,
            transparent 50%,
            rgba(255, 255, 255, 0.7) 85%,
            rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

/* Hero Title (Premium Lüks Font) */
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: #ffffff;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 4px 8px rgba(0, 0, 0, 0.7),
        0 8px 16px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(255, 255, 255, 0.1);
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.1);
    animation: heroTitleReveal 1s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

@keyframes heroTitleReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
        letter-spacing: 0.1em;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: -0.02em;
    }
}

/* Title içindeki özel vurgular */
.hero-title strong,
.hero-title b {
    font-weight: 500;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px var(--primary));
}

.hero-title em {
    font-style: italic;
    color: var(--primary);
    /* Vurgu rengi */
    background: none;
    -webkit-text-fill-color: initial;
}

/* Hero Description */
.hero-desc {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 4px 12px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
    letter-spacing: 0.03em;
}

/* Desktop Nav */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    position: relative;
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    transition: color 0.3s ease;
    font-family: var(--font-sans);
}



.nav-link:focus {
    color: var(--text);
    outline: none;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary), transparent);
    transition: height 0.3s ease;
    opacity: 0.5;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px var(--primary);
}

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

.nav-link:hover::before {
    height: 20px;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link.active {
    color: var(--primary) !important;
}

.nav-link.active::after {
    transform: scaleX(1);
    background-color: var(--primary);
}

/* Canlı Dinle Butonu (Özel Stil) */
.btn-live {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(219, 53, 82, 0.4);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-live:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(219, 53, 82, 0.6);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-live svg {
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    z-index: 101;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    border-top: 1px solid var(--glass-border);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-inner {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: calc(100vh - var(--header-height));
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-light);
    background: var(--card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary);
    background: rgba(219, 53, 82, 0.1);
    border-color: rgba(219, 53, 82, 0.3);
}

/* ========================================
   MAIN CONTENT
======================================== */
/* Main Content - Seamless Hero Entegrasyonu */
.main-content {
    padding-top: 0;
    /* Header hero'nun üzerinde duracak */
    padding-bottom: 0;
    min-height: 100vh;
}

/* Alt sayfalarda Header daha kompakt olsun */
body.page-sub .header {
    height: 100px;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, 0.9) 100%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Alt sayfalarda içerik header'a tam otursun */
body.page-sub .main-content {
    padding-top: 100px;
    /* 100px Header Yüksekliği */
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    height: 100vh;
    /* Tam ekran */
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
    /* Optik dengeleme */
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--background);
}

/* Hero Background Image */
.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}



/* Vignette efekti */


/* Alt kenarda altın çizgi */


.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    mix-blend-mode: screen;
    animation: float 15s ease-in-out infinite;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    top: 20%;
    left: 20%;
    background: rgba(159, 18, 57, 0.2);
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    bottom: 20%;
    right: 20%;
    background: rgba(217, 119, 6, 0.2);
    animation-delay: 5s;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.85), rgba(20, 20, 25, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-light);
    margin-bottom: 28px;
    backdrop-filter: blur(20px);
    animation: badgeFloat 0.8s ease forwards;
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: badgeShine 4s ease-in-out infinite;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgeShine {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}







.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero-freqs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 48px;
    opacity: 0.7;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.4s;
}

.hero-freq-badge {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background: rgba(10, 10, 10, 0.2);
    border: 1px solid var(--glass-border);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-freq-badge strong {
    color: var(--text);
}

.hero-freq-link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    font-size: 0.875rem;
}

.hero-freq-link:hover {
    text-decoration: underline;
}

/* ========================================
   GLASS CARD
======================================== */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(219, 53, 82, 0.3);
    transform: translateY(-4px);
}

.glass-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: rgba(219, 53, 82, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.glass-card:hover .glass-card-icon {
    background: var(--primary);
    color: #fff;
}

.glass-card-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.glass-card-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 20px;
    min-height: 40px;
}

.glass-card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
}

.glass-card-link:hover {
    gap: 8px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

/* ========================================
   APP SECTION
======================================== */
.app-section {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--card-light), var(--background));
}

.app-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.app-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.app-desc {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 40px;
}

.app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--card-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.app-btn:hover {
    background: var(--border);
    border-color: rgba(219, 53, 82, 0.5);
}

.app-btn-icon {
    color: var(--primary);
}

.app-btn-text {
    text-align: left;
}

.app-btn-label {
    font-size: 0.625rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.app-btn-name {
    font-weight: 700;
    line-height: 1;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--card);
    border-top: 1px solid var(--glass-border);
    padding: 64px 0 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 300px;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
}

.footer-links-title {
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

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

/* ========================================
   FORMS
======================================== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(5, 5, 5, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    color: var(--text);
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
}

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

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

/* ========================================
   PAGE HEADER
======================================== */
.page-header {
    text-align: center;
    padding: 60px 0 40px;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Page Content (Rich Text Editor Support) */
.page-content {
    color: var(--text);
}

.page-content p,
.page-content span,
.page-content div,
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6,
.page-content li,
.page-content a:not(.btn) {
    color: inherit;
}

/* ========================================
   STATS
======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 48px;
    border-top: 1px solid var(--glass-border);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-family: var(--font-serif);
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* ========================================
   FREQUENCY TABLE
======================================== */
.freq-search {
    max-width: 400px;
    margin: 0 auto 40px;
    position: relative;
}

.freq-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.freq-search-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--text);
    font-size: 1rem;
}

.freq-search-input:focus {
    outline: none;
    border-color: var(--primary);
}

.freq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.freq-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.freq-item:hover {
    border-color: rgba(219, 53, 82, 0.3);
    background: rgba(219, 53, 82, 0.05);
}

.freq-city {
    color: var(--text);
}

.freq-value {
    font-weight: 700;
    color: var(--primary);
}

/* ========================================
   PROGRAM SCHEDULE
======================================== */
.program-list {
    max-width: 800px;
    margin: 0 auto;
}

.program-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    transition: var(--transition);
}

.program-item.active {
    border-color: var(--primary);
    background: rgba(219, 53, 82, 0.05);
}

.program-time {
    min-width: 100px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.program-info {
    flex: 1;
}

.program-name {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.program-host {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.program-status {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.program-status.active {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.program-status.passed {
    background: rgba(115, 115, 115, 0.2);
    color: var(--text-muted);
}

.program-status.upcoming {
    background: rgba(219, 53, 82, 0.2);
    color: var(--primary);
}

/* ========================================
   CONTACT
======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

.contact-card-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.contact-card-title {
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-card-text {
    color: var(--text-muted);
    font-size: 0.875rem;
    white-space: pre-line;
}

.contact-card-text a:hover {
    color: var(--primary);
}

.contact-form {
    background: rgba(10, 10, 10, 0.5);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

/* ========================================
   EMBED CODES
======================================== */
.embed-section {
    max-width: 800px;
    margin: 0 auto;
}

.embed-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.embed-title {
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.embed-code {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    font-family: monospace;
    font-size: 0.8125rem;
    color: var(--primary);
    overflow-x: auto;
    word-break: break-all;
}

.embed-copy-btn {
    margin-top: 12px;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-20px) translateX(10px);
    }

    50% {
        transform: translateY(0) translateX(20px);
    }

    75% {
        transform: translateY(20px) translateX(10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ========================================
   ALERT / TOAST
======================================== */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

/* ========================================
   PAGINATION
======================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.page-link:hover,
.page-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ========================================
   OVERRIDE STYLES (Page Content Spacing Fix)
======================================== */
body.page-sub .main-content {
    padding-top: 170px !important;
    /* Header (120px) + Boşluk (50px) - Kullanıcı isteği ile azaltıldı */
}

@media (max-width: 1024px) {
    body.page-sub .main-content {
        padding-top: 150px !important;
    }
}

@media (max-width: 768px) {
    body.page-sub .main-content {
        padding-top: 120px !important;
    }
}

/* ========================================
   COOKIE CONSENT
======================================== */
/* ========================================
   COOKIE CONSENT
======================================== */
.cookie-consent {
    position: fixed;
    bottom: 30px;
    right: 30px;
    left: auto;
    z-index: 10000;
    max-width: 400px;
    width: 90%;
    animation: fadeInUp 0.5s ease forwards;
}

.cookie-content {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.cookie-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    box-shadow: 0 5px 15px rgba(219, 53, 82, 0.3);
}

.cookie-text p {
    margin: 0;
    color: #e5e5e5;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.cookie-text a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
}

.cookie-actions .btn {
    width: 100%;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: var(--radius);
}

@media (max-width: 768px) {
    .cookie-consent {
        bottom: 20px;
        right: 20px;
        left: 20px;
        width: auto;
        max-width: none;
    }
}