/* C:\laragon\www\Henes\css\style.css */

/* ================= ANA DEĞİŞKENLER VE TEMEL AYARLAR ================= */
:root {
    --primary-green-dark: #042f1a;
    --primary-green: #064e3b;
    --primary-green-light: #0f766e;
    --primary-green-soft: #d1fae5;
    
    --accent-gold: #c5a880;
    --accent-gold-dark: #a37f52;
    --accent-gold-bright: #d97706;
    
    --bg-cream: #faf7f2;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.85);
    
    --text-dark: #1f2937;
    --text-muted: #4b5563;
    --text-light: #f9fafb;
    
    --border-color: rgba(197, 168, 128, 0.25);
    --border-color-focus: rgba(163, 127, 82, 0.5);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(4, 47, 26, 0.08);
    --shadow-lg: 0 10px 25px rgba(4, 47, 26, 0.12);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Scrollbar Özelleştirme */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-dark);
}

/* ================= UYGULAMA LAYOUT YAPISI ================= */
.app-container {
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* ================= 1. SOL TARAF: DETAYLI DIKEY SLIDER (Masaüstü) ================= */
.media-sidebar {
    width: 40%;
    height: 100%;
    position: relative;
    background-color: var(--primary-green-dark);
    flex-shrink: 0;
    overflow: hidden;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    transform: scale(1.03);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(4, 47, 26, 0.95) 0%, rgba(4, 47, 26, 0.4) 50%, rgba(4, 47, 26, 0.1) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    width: 100%;
    color: var(--text-light);
    transform: translateY(20px);
    transition: transform 0.8s ease;
}

.slide.active .slide-content {
    transform: translateY(0);
}

.slide-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(197, 168, 128, 0.2);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.slide-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 90%;
}

.slide-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(197, 168, 128, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green-dark);
    font-size: 32px;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    transition: var(--transition-smooth);
}

.slide-play-overlay:hover {
    background: var(--text-light);
    transform: translate(-50%, -50%) scale(1.1);
    color: var(--accent-gold-dark);
}

/* Fallback Slide */
.fallback-slide {
    background-color: var(--primary-green-dark);
    background-image: radial-gradient(circle at center, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-green-dark);
    border-color: var(--accent-gold);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--accent-gold);
    width: 20px;
    border-radius: 4px;
}

/* ================= 2. ORTA DİKEY AYIRICI ÇİZGİ (Masaüstü) ================= */
.vertical-divider {
    width: 36px;
    height: 100%;
    background: linear-gradient(90deg, #f5f1e8 0%, var(--bg-cream) 50%, #f5f1e8 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    border-left: 1px solid rgba(197, 168, 128, 0.35);
    border-right: 1px solid rgba(197, 168, 128, 0.35);
    box-shadow: inset 1px 0 4px rgba(163, 127, 82, 0.03), inset -1px 0 4px rgba(163, 127, 82, 0.03);
    position: relative;
    flex-shrink: 0;
    z-index: 10;
}

.ornament-pattern {
    flex-grow: 1;
    width: 10px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="30" viewBox="0 0 10 30"><line x1="5" y1="0" x2="5" y2="30" stroke="%23c5a880" stroke-width="0.75" opacity="0.25"/><path d="M5 10 L7.5 13.5 L5 17 L2.5 13.5 Z" fill="%23a37f52" opacity="0.75"/><circle cx="5" cy="2" r="1" fill="%23c5a880" opacity="0.4"/><circle cx="5" cy="25" r="1" fill="%23c5a880" opacity="0.4"/></svg>');
    background-repeat: repeat-y;
    background-position: center;
    opacity: 0.8;
}

.ornament-center {
    margin: 20px 0;
    color: var(--accent-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 38px;
    height: 38px;
    background: var(--bg-cream);
    border-radius: 50%;
    border: 1px solid rgba(197, 168, 128, 0.3);
    box-shadow: 0 2px 6px rgba(163, 127, 82, 0.1);
    animation: rotateSlow 25s linear infinite;
    z-index: 2;
}

.ornament-center::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px dashed rgba(197, 168, 128, 0.25);
    border-radius: 50%;
    animation: rotateSlow 35s linear infinite reverse;
}

.ornament-center svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold-dark);
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05));
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ================= 3. SAĞ TARAF: İÇERİK PANELİ (Masaüstü) ================= */
.content-panel {
    flex-grow: 1;
    height: 100%;
    overflow-y: auto;
    background-color: var(--bg-cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
}

/* Desktop Header */
.desktop-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    width: 100%;
    max-width: 800px;
}

.header-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.header-title .icon-gold {
    font-size: 28px;
    margin-bottom: 10px;
}

.header-title h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: 0.5px;
}

.header-title .subtitle {
    font-size: 13px;
    color: var(--accent-gold-dark);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2px;
    font-weight: 700;
}

.icon-gold {
    color: var(--accent-gold-dark);
}

.admin-quick-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: var(--bg-card);
    transition: var(--transition-smooth);
    font-family: var(--font-heading);
}

.admin-quick-link:hover {
    background: var(--primary-green);
    color: var(--text-light);
    border-color: var(--primary-green);
}

/* Hızlı Menü Butonları (Grid) */
.navigation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 45px;
    width: 100%;
    max-width: 800px;
}

.nav-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 18px 10px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.nav-card-icon {
    font-size: 22px;
    color: var(--primary-green);
    transition: var(--transition-smooth);
}

.nav-card span {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.nav-card:hover {
    border-color: var(--accent-gold-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.nav-card.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.nav-card.active .nav-card-icon,
.nav-card.active span {
    color: var(--text-light);
}

/* Sayfalar Konteyneri */
.pages-container {
    flex-grow: 1;
    position: relative;
    margin-bottom: 40px;
    width: 100%;
    max-width: 800px;
}

.page-section {
    display: none;
    animation: fadeInTab 0.5s ease forwards;
}

.page-section.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title-wrap {
    margin-bottom: 25px;
}

.section-title-wrap h3 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.title-divider {
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
}

/* ================= 4. SEKME İÇERİK DETAYLARI (ZİYARETÇİ) ================= */

/* Küresel Hoşgeldiniz ve Selam Alanı */
.global-welcome-bar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
    position: relative;
    border-left: 3px solid var(--accent-gold-dark);
    border-right: 3px solid var(--accent-gold-dark);
    width: 100%;
    max-width: 800px;
}

.global-welcome-bar .arabic-bismillah {
    font-size: 28px;
    color: var(--primary-green);
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
}

.global-welcome-bar .salam-title {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--accent-gold-dark);
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.ornate-separator-mini {
    height: 1px;
    width: 100px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    margin: 8px auto 0;
}

/* Hoşgeldiniz Kutusu */
.welcome-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
    position: relative;
}

.arabic-bismillah {
    font-size: 26px;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-family: 'Cinzel', serif; /* Ornate serif */
}

.welcome-box h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--accent-gold-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.welcome-box p {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 90%;
    margin: 0 auto;
}

.ornate-border-top, .ornate-border-bottom {
    height: 4px;
    width: 80%;
    margin: 0 auto;
    opacity: 0.3;
}

.ornate-border-top {
    border-top: 1px solid var(--accent-gold);
    margin-bottom: 15px;
}

.ornate-border-bottom {
    border-bottom: 1px solid var(--accent-gold);
    margin-top: 15px;
}

/* Hadis / Söz Kartı */
.quote-card {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    color: var(--text-light);
    padding: 30px;
    border-radius: 12px;
    position: relative;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.quote-icon {
    font-size: 40px;
    color: rgba(197, 168, 128, 0.25);
    position: absolute;
    top: 15px;
    left: 20px;
}

.quote-card blockquote {
    font-family: var(--font-heading);
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.quote-card cite {
    display: block;
    text-align: right;
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--accent-gold);
    font-weight: 600;
    font-style: normal;
}

/* Ana Sayfa Özet Grid */
.home-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.summary-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.card-header h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-all-link {
    font-size: 12px;
    color: var(--accent-gold-dark);
    text-decoration: none;
    font-weight: 500;
}

.view-all-link:hover {
    text-decoration: underline;
}

.summary-list-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.05);
}

.summary-list-item:last-child {
    border-bottom: none;
}

.summary-list-item h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.summary-list-item p {
    font-size: 11px;
    color: var(--text-muted);
}

.summary-date {
    font-size: 10px;
    color: var(--accent-gold-dark);
    font-weight: 600;
    white-space: nowrap;
    margin-left: 10px;
    margin-top: 3px;
}

.summary-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.summary-content p {
    font-size: 13px;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hakkımda Sekmesi Detay */
.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.about-card h4 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    font-size: 16px;
    margin-bottom: 15px;
    border-left: 3px solid var(--accent-gold);
    padding-left: 10px;
}

.about-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.about-card p:last-child {
    margin-bottom: 0;
}

.about-card ul {
    list-style: none;
}

.about-card li {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.about-card li::before {
    content: "◈";
    color: var(--accent-gold-dark);
    position: absolute;
    left: 0;
    font-size: 12px;
}

.silsile-timeline {
    position: relative;
    padding-left: 25px;
    margin-top: 20px;
}

.silsile-timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: var(--accent-gold);
    opacity: 0.4;
}

.silsile-step {
    position: relative;
    margin-bottom: 25px;
}

.silsile-step:last-child {
    margin-bottom: 0;
}

.step-num {
    position: absolute;
    left: -25px;
    top: 0;
    width: 18px;
    height: 18px;
    background: var(--bg-card);
    border: 2px solid var(--accent-gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: bold;
    color: var(--accent-gold-dark);
    z-index: 2;
}

.silsile-step.active .step-num {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--text-light);
}

.silsile-step h5 {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

.silsile-step p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

/* Albümler Grid */
.albums-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.album-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
}

.album-thumbnail-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 65%;
    overflow: hidden;
    background: var(--primary-green-dark);
}

.album-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.album-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(4, 47, 26, 0.85);
    border: 1px solid var(--accent-gold);
    color: var(--text-light);
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.album-card-info {
    padding: 15px;
}

.album-card-info h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.album-card-info p {
    font-size: 11px;
    color: var(--text-muted);
}

.album-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold-dark);
}

.album-card:hover .album-thumbnail {
    transform: scale(1.05);
}

/* Albüm İçerik Görünümü */
.album-photos-view {
    animation: fadeInTab 0.4s ease forwards;
}

.back-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-card);
    transition: var(--transition-smooth);
    margin-bottom: 25px;
}

.back-btn:hover {
    background: var(--primary-green);
    color: var(--text-light);
    border-color: var(--primary-green);
}

.album-view-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 4px;
}

.album-view-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.photo-item {
    position: relative;
    padding-bottom: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    background: #000;
}

.photo-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    opacity: 0.95;
}

.photo-item:hover img {
    transform: scale(1.06);
    opacity: 1;
}

/* Videolar Grid & Kategorize Düzen */
.videos-grid, .category-videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.video-category-block {
    margin-bottom: 40px;
    width: 100%;
}

.video-category-block:last-child {
    margin-bottom: 0;
}

.video-category-title {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--primary-green);
    border-left: 3px solid var(--accent-gold);
    padding-left: 10px;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.video-thumbnail-wrap {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    overflow: hidden;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(197, 168, 128, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green-dark);
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
}

.video-card:hover .video-play-btn {
    background: var(--text-light);
    transform: translate(-50%, -50%) scale(1.1);
    color: var(--accent-gold-dark);
}

.video-card:hover .video-thumbnail {
    transform: scale(1.04);
    opacity: 1;
}

.video-card h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold-dark);
}

/* Sohbetler Listesi */
.sohbet-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.sohbet-card:hover {
    border-color: var(--accent-gold-dark);
}

.sohbet-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.sohbet-title-wrap h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 2px;
}

.sohbet-date {
    font-size: 11px;
    color: var(--accent-gold-dark);
    font-weight: 600;
}

.sohbet-audio-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: var(--primary-green-soft);
    color: var(--primary-green);
    font-size: 10px;
    border-radius: 10px;
    font-weight: 500;
}

.sohbet-content-preview {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sohbet-actions {
    display: flex;
    gap: 10px;
}

.sohbet-btn {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.sohbet-btn.play {
    background: var(--primary-green);
    border: 1px solid var(--primary-green);
    color: var(--text-light);
}

.sohbet-btn.play:hover {
    background: var(--primary-green-dark);
    border-color: var(--primary-green-dark);
}

.sohbet-btn.read {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
}

.sohbet-btn.read:hover {
    background: var(--bg-cream);
    border-color: var(--accent-gold-dark);
}

/* Duyurular Listesi */
.duyuru-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.duyuru-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gold-dark);
}

.duyuru-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.duyuru-header h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.duyuru-date {
    font-size: 11px;
    color: var(--accent-gold-dark);
    font-weight: 600;
}

.duyuru-card p {
    font-size: 13.5px;
    color: var(--text-muted);
}

/* Medya Listesi */
.medya-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.medya-card h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 4px;
}

.medya-date {
    font-size: 11px;
    color: var(--accent-gold-dark);
    margin-bottom: 12px;
    display: block;
}

.medya-card p {
    font-size: 13.5px;
    color: var(--text-muted);
}

/* ================= İLETİŞİM ALANI ================= */
.contact-container {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 30px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item i {
    font-size: 24px;
    color: var(--accent-gold-dark);
    margin-top: 3px;
}

.info-item h5 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.info-item p {
    font-size: 13.5px;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 18px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-green);
    color: var(--text-light);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

/* İletişim Formu */
.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-form-wrap h4 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    font-size: 15px;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--text-dark);
    background: var(--bg-cream);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold-dark);
    background: var(--bg-card);
}

.submit-btn {
    background: var(--primary-green);
    border: 1px solid var(--primary-green);
    color: var(--text-light);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.submit-btn:hover {
    background: var(--primary-green-dark);
    border-color: var(--primary-green-dark);
}

.form-success-msg {
    margin-top: 15px;
    padding: 12px;
    background: var(--primary-green-soft);
    color: var(--primary-green);
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    animation: fadeInTab 0.3s ease;
}

/* ================= KİŞİSELLEŞTİRİLMİŞ AYAKLIK (FOOTER) ================= */
.main-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    margin-top: auto;
    text-align: center;
    color: var(--text-muted);
    width: 100%;
    max-width: 800px;
}

.footer-ornament {
    color: var(--accent-gold);
    max-width: 300px;
    margin: 0 auto 15px;
    opacity: 0.8;
}

.main-footer p {
    font-size: 11px;
}

.main-footer .dev-info {
    font-family: var(--font-heading);
    color: var(--accent-gold-dark);
    margin-top: 4px;
    font-size: 10px;
    letter-spacing: 1px;
}

/* ================= 5. DİĞER ORTAK MODALLAR & BİLEŞENLER ================= */

/* Ses Çalar (Persistent Audio Player) */
.persistent-audio-player {
    position: fixed;
    bottom: 25px;
    right: 25px;
    left: calc(40% + 55px); /* Masaüstünde sol sütun genişliğine göre */
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--accent-gold);
    border-radius: 16px;
    padding: 15px 25px;
    z-index: 100;
    box-shadow: var(--shadow-lg);
    animation: slideUpPlayer 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes slideUpPlayer {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.player-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.audio-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 150px;
    max-width: 250px;
}

.audio-info i {
    font-size: 20px;
}

.audio-info h6 {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.audio-info span {
    font-size: 10px;
    color: var(--text-muted);
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
}

.control-btn {
    width: 36px;
    height: 36px;
    background: var(--primary-green);
    border: none;
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.control-btn:hover {
    background: var(--accent-gold-dark);
    transform: scale(1.05);
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
}

.time-text {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
}

.progress-bar-bg {
    height: 6px;
    background: rgba(0,0,0,0.06);
    border-radius: 3px;
    flex-grow: 1;
    cursor: pointer;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--primary-green);
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 0;
}

.close-player-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-player-btn:hover {
    color: #ef4444;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 47, 26, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInTab 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover {
    color: var(--accent-gold);
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border: 3px solid var(--accent-gold);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lightbox-caption {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 14px;
    text-align: center;
    font-family: var(--font-heading);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-nav:hover {
    background: var(--accent-gold);
    color: var(--primary-green-dark);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 47, 26, 0.95);
}

.video-modal-container {
    position: relative;
    width: 80%;
    max-width: 800px;
    background: var(--bg-card);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    overflow: hidden;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    animation: zoomInVideo 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1) forwards;
}

@keyframes zoomInVideo {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.video-modal-close:hover {
    background: red;
}

.video-iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-modal-title {
    padding: 15px 20px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    background: var(--bg-cream);
}

/* ================= 6. MOBİL UYUMLULUK VE MOBILE-FIRST YAPISI ================= */
.mobile-header {
    display: none;
}

.bottom-navigation {
    display: none;
}

.mobile-more-overlay {
    display: none;
}


/* ================= PLAYLISTS (OYNATMA LISTELERI) ================= */
.playlists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.playlist-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
}

.playlist-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.playlist-thumbnail-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 65%;
    overflow: hidden;
    background: var(--primary-green-dark);
}

.playlist-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    opacity: 0.8;
}

.playlist-card:hover .playlist-thumbnail {
    transform: scale(1.05);
    opacity: 0.95;
}

.playlist-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(4, 47, 26, 0.85);
    border: 1px solid var(--accent-gold);
    color: var(--text-light);
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.playlist-card-info {
    padding: 15px;
}

.playlist-card-info h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.4;
    font-weight: 600;
}

.playlist-card-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.playlist-videos-view {
    animation: fadeInTab 0.4s ease forwards;
}

.playlist-view-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.playlist-view-header h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary-green);
    font-weight: 700;
    margin: 0;
}

.playlist-view-count {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 25px;
    border-left: 3px solid var(--accent-gold);
    padding-left: 8px;
}

/* Masaüstü ve Tablette Gizli - Sadece Mobilde Görünür */
.mobile-only-top-header {
    display: none;
}

.mobile-brand-title {
    display: none;
}

/* Mobil Ekran Boyutları (Tablet ve Telefonlar) */
@media (max-width: 1024px) {
    .app-container {
        flex-direction: column;
        height: auto;
        overflow-y: auto;
    }
    
    /* Sol sütun (Slayt gösterisi) üst tarafa geçer */
    .media-sidebar {
        width: 100%;
        height: 280px; /* Sabit dikey boy */
    }
    
    .slide {
        transform: none;
        background-size: contain;
        background-position: center top;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h3 {
        font-size: 20px;
    }
    
    .slide-content p {
        font-size: 12px;
    }
    
    .slider-controls {
        bottom: 20px;
        right: 20px;
        gap: 8px;
    }
    
    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    /* Orta dikey çizgi gizlenir */
    .vertical-divider {
        display: none;
    }
    
    /* Sağ sütun (İçerik) ana akış haline gelir */
    .content-panel {
        width: 100%;
        height: auto;
        overflow-y: visible;
        padding: 20px;
        padding-bottom: 100px; /* Alt bar için boşluk */
    }
    
    /* Masaüstü header gizlenir, mobil header gelir */
    .desktop-header {
        display: none;
    }
    
    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .header-logo {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .header-logo h1 {
        font-family: var(--font-heading);
        font-size: 18px;
        font-weight: 700;
        color: var(--primary-green);
    }
    
    .admin-quick-link {
        padding: 8px;
        border-radius: 50%;
        font-size: 18px;
    }
    
    /* Hızlı gezinme grid'i mobilde slider altında gösterilir */
    .navigation-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .nav-card {
        padding: 12px 6px;
        border-radius: 8px;
        gap: 6px;
    }
    
    .nav-card-icon {
        font-size: 18px;
    }
    
    .nav-card span {
        font-size: 9.5px;
    }

    /* Albümler ve Videolar Grid */
    .albums-grid, .playlists-grid, .videos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* İletişim */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Günün Hadisi ve Ana Sayfa Grid */
    .home-summary-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Mobil Alt Menü Barı (Bottom Nav) */
    .bottom-navigation {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 60px;
        background: var(--bg-glass);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 -4px 15px rgba(0,0,0,0.05);
        z-index: 999;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .bottom-nav-item {
        background: none;
        border: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        color: var(--text-muted);
        cursor: pointer;
        padding: 8px 10px;
        transition: var(--transition-fast);
        flex: 1;
    }
    
    .bottom-nav-item i {
        font-size: 20px;
    }
    
    .bottom-nav-item span {
        font-size: 9px;
        font-weight: 500;
    }
    
    .bottom-nav-item.active {
        color: var(--primary-green);
    }
    
    /* Mobil "Diğer" Menüsü */
    .mobile-more-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(4, 47, 26, 0.7);
        z-index: 1000;
        display: none;
        align-items: flex-end; /* Alttan açılan pencere */
        animation: fadeInOverlay 0.3s ease;
    }
    
    @keyframes fadeInOverlay {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .more-menu-container {
        width: 100%;
        background: var(--bg-card);
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        padding: 20px;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
        transform: translateY(100%);
        animation: slideUpMenu 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1) forwards;
    }
    
    @keyframes slideUpMenu {
        to { transform: translateY(0); }
    }
    
    .more-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 12px;
        margin-bottom: 20px;
    }
    
    .more-menu-header h4 {
        font-family: var(--font-heading);
        font-size: 14px;
        color: var(--primary-green);
    }
    
    .more-menu-header button {
        background: none;
        border: none;
        font-size: 20px;
        color: var(--text-muted);
        cursor: pointer;
    }
    
    .more-menu-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .more-menu-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 18px 10px;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        text-decoration: none;
        color: var(--text-dark);
        background: var(--bg-cream);
        transition: var(--transition-smooth);
    }
    
    .more-menu-item i {
        font-size: 22px;
        color: var(--primary-green);
    }
    
    .more-menu-item span {
        font-family: var(--font-heading);
        font-size: 11px;
        font-weight: 600;
    }
    
    /* Mobil Sabit Müzik Çalar */
    .persistent-audio-player {
        left: 15px;
        right: 15px;
        bottom: 75px; /* Bottom nav'ın üstünde duracak */
        padding: 10px 15px;
        border-radius: 12px;
    }
    
    .player-content {
        gap: 10px;
    }
    
    .audio-info {
        min-width: 90px;
        max-width: 120px;
    }
    
    .audio-info h6 {
        font-size: 10.5px;
    }
    
    .audio-controls {
        gap: 8px;
    }
    
    .control-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .progress-container {
        gap: 6px;
    }
    
    .time-text {
        font-size: 8.5px;
    }
    
    /* Modaller */
    .lightbox-nav {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    
    .video-modal-container {
        width: 92%;
    }

    /* ===== SADECE MOBİL: Üst Başlık Bloğu ===== */
    .mobile-only-top-header {
        display: block;
        width: 100%;
        background: var(--bg-cream);
        padding: 15px 15px 5px 15px;
        box-sizing: border-box;
        order: -1; /* flexbox'ta en üste al */
    }

    .mobile-only-top-header .global-welcome-bar {
        margin-bottom: 0;
        text-align: center;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-left: 3px solid var(--accent-gold);
        border-right: 1px solid var(--border-color);
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 18px 14px;
        box-shadow: var(--shadow-sm);
    }

    .mobile-brand-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 0 14px 0;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 0;
    }

    .mobile-brand-title i {
        font-size: 22px;
        color: var(--accent-gold-dark);
    }

    .mobile-brand-title h2 {
        font-family: var(--font-heading);
        font-size: 18px;
        font-weight: 700;
        color: var(--primary-green);
        margin: 0;
    }

    .mobile-brand-title .subtitle {
        display: none;
    }

    /* Mobilde content-panel içindeki kopya besmele ve header'i gizle */
    #desktop-welcome-bar,
    #desktop-mobile-header {
        display: none !important;
    }

    .mobile-header {
        display: none !important;
    }

}
