/* ==========================================================================
   IHYA PREMIUM LANDING PAGE STYLING
   Theme: Luxurious Dark Emerald Green & Gold Gradients
   ========================================================================== */

/* --- Custom Variables & Theme Tokens --- */
:root {
    --primary-bg: #030F0A;
    --secondary-bg: #071912;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-bg-hover: rgba(255, 255, 255, 0.06);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-active: rgba(229, 192, 123, 0.3);
    
    /* Elegant Gold Color System */
    --gold-light: #E5C07B;
    --gold-dark: #C19D53;
    --gold-gradient: linear-gradient(135deg, #E5C07B 0%, #C19D53 100%);
    --gold-glow: 0 0 20px rgba(229, 192, 123, 0.35);
    
    /* Emerald Green Accents */
    --emerald-light: #10B981;
    --emerald-dark: #064E3B;
    --emerald-glow: 0 0 20px rgba(16, 185, 129, 0.25);
    
    /* Text Color System */
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* --- Base Reset & Typography --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-primary);
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* --- Global Utilities & Gradients --- */
.gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-glow-effect {
    box-shadow: var(--gold-glow);
}

.emerald-glow-effect {
    box-shadow: var(--emerald-glow);
}

/* --- Navbar Styling --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(3, 15, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    height: 70px;
    background: rgba(3, 15, 10, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.brand-logo-sm {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.brand-name {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.brand-name span {
    font-weight: 300;
    color: var(--gold-light);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--gold-light);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-btn:hover {
    background: var(--gold-gradient);
    color: #030F0A;
    border-color: transparent;
}

.btn-download-sm {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-gradient);
    color: #030F0A;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    box-shadow: var(--gold-glow);
    transition: var(--transition-smooth);
}

.btn-download-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(229, 192, 123, 0.5);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 70% 30%, rgba(6, 78, 59, 0.15) 0%, rgba(3, 15, 10, 0) 60%);
}

.hero-glow {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229, 192, 123, 0.08) 0%, rgba(3, 15, 10, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-row {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-left {
    flex: 1.2;
}

.hero-right {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 192, 123, 0.08);
    border: 1px solid var(--border-color-active);
    color: var(--gold-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 54px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.btn-appstore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    padding: 10px 24px;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-appstore:hover {
    border-color: var(--gold-light);
    box-shadow: var(--gold-glow);
    transform: translateY(-2px);
}

.btn-appstore i {
    font-size: 30px;
    color: #ffffff;
}

.btn-appstore-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-appstore-text span {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.btn-appstore-text strong {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.text-yellow {
    color: #FBBF24;
}

/* --- Mobile Interactive Simulator Mockup --- */
.mockup-container {
    position: relative;
    width: 320px;
    height: 650px;
}

.phone-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    border: 12px solid #1e293b;
    background: #030f0a;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), var(--gold-glow);
    overflow: hidden;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 24px;
    background: #1e293b;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 720px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, rgba(3, 15, 10, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Simulator Controls */
.sim-controls {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 16px;
    z-index: 5;
}

.sim-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.sim-btn:hover {
    background: var(--gold-gradient);
    color: #030F0A;
    border-color: transparent;
    box-shadow: var(--gold-glow);
}

.sim-info-box {
    position: absolute;
    top: 360px;
    right: -240px;
    width: 200px;
    background: rgba(7, 25, 18, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color-active);
    padding: 16px;
    border-radius: 16px;
    z-index: 5;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

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

.sim-info-box h4 {
    font-size: 14px;
    color: var(--gold-light);
    margin-bottom: 6px;
    font-weight: 800;
}

.sim-info-box p {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* --- Section Formatting --- */
section.features, section.widgets, section.quran-tab, section.gallery {
    padding: 120px 0;
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px 32px;
    border-radius: 20px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(229, 192, 123, 0.03) 0%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--card-bg-hover);
    border-color: var(--border-color-active);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(229, 192, 123, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-box {
    background: var(--gold-gradient);
}

.feature-icon-box i {
    font-size: 24px;
    color: var(--gold-light);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-box i {
    color: #030F0A;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Interactive Widgets Section --- */
.widgets-row {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.widgets-left h2 {
    font-size: 38px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.widgets-left p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Widgets features checklist triggers */
.widgets-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.w-feat-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.w-feat-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--border-color);
}

.w-feat-item.active {
    background: rgba(229, 192, 123, 0.04);
    border-color: var(--border-color-active);
}

.w-feat-item i {
    font-size: 18px;
    color: var(--gold-light);
    margin-top: 4px;
    background: rgba(229, 192, 123, 0.08);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.w-feat-item.active i {
    background: var(--gold-gradient);
    color: #030F0A;
}

.w-feat-item h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 4px;
}

.w-feat-item p {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 0 !important;
    line-height: 1.4;
}

/* Unified Dashboard Widget */
.premium-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.dashboard-widget {
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
}

.dashboard-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--border-color);
}

.dash-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 8px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.dash-tab-btn:hover {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.02);
}

.dash-tab-btn.active {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 2px solid var(--gold-light);
}

.dashboard-content {
    padding: 32px;
}

.dash-pane {
    display: none;
    animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.dash-pane.active {
    display: block;
}

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

/* Dashboard Tab 1: Manevi Günlük Checklist Styling */
.manevi-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: center;
}

.manevi-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

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

.check-item input {
    display: none;
}

.custom-checkbox {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid var(--border-color);
    position: relative;
    display: inline-block;
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.01);
}

.check-item input:checked + .custom-checkbox {
    border-color: var(--gold-light);
    background: var(--gold-gradient);
    box-shadow: 0 0 10px rgba(229, 192, 123, 0.25);
}

.custom-checkbox::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    color: #030F0A;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.check-item input:checked + .custom-checkbox::after {
    transform: translate(-50%, -50%) scale(1);
}

.check-text {
    flex: 1;
    transition: var(--transition-fast);
}

.check-item input:checked ~ .check-text {
    text-decoration: line-through;
    color: var(--text-muted);
}

.manevi-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.15);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.progress-circle-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 16px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring__circle {
    stroke-dasharray: 314.16;
    stroke-dashoffset: 314.16;
    transition: stroke-dashoffset 0.35s ease;
    transform-origin: 50% 50%;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 800;
    color: var(--gold-light);
    font-family: 'Outfit', sans-serif;
}

.status-msg {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 16px;
    height: 32px;
}

.streak-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 192, 123, 0.08);
    border: 1px solid var(--border-color-active);
    color: var(--gold-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* Dashboard Tab 2: Zikirmatik (Tasbih) Simulator Widget */
.tasbih-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.tasbih-screen {
    flex: 1;
}

.tasbih-count-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tasbih-count {
    font-size: 64px;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    margin-top: 4px;
}

.tasbih-target {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.tasbih-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.target-select-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.target-select-wrap label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.tasbih-select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 13px;
    padding: 10px;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tasbih-select:focus {
    border-color: var(--gold-light);
}

.btn-tasbih-click {
    width: 90px;
    height: 90px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-tasbih-click:active {
    transform: scale(0.92);
    box-shadow: 0 0 10px rgba(229, 192, 123, 0.3);
}

.btn-tasbih-click i {
    font-size: 32px;
    color: #030F0A;
}

.btn-tasbih-reset {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.btn-tasbih-reset:hover {
    color: var(--gold-light);
}

/* Dashboard Tab 3: Kaza Calculator Widget */
.kaza-flex {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 30px;
    align-items: center;
}

.kaza-inputs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
}

.input-group input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: 10px;
    color: #FFFFFF;
    font-weight: 700;
    outline: none;
    transition: var(--transition-fast);
}

.input-group input:focus {
    border-color: var(--gold-light);
    background: rgba(255, 255, 255, 0.05);
}

.kaza-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.kaza-res-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 14px 8px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-fast);
}

.kaza-res-card:hover {
    border-color: var(--border-color-active);
    background: rgba(255, 255, 255, 0.04);
}

.kaza-res-lbl {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
}

.kaza-res-num {
    font-size: 22px;
    font-weight: 900;
    color: var(--gold-light);
    margin-top: 4px;
    font-family: 'Outfit', sans-serif;
}

.kaza-total-banner {
    margin-top: 24px;
    background: rgba(229, 192, 123, 0.05);
    border: 1px solid var(--border-color-active);
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}

.kaza-total-num {
    color: var(--gold-light);
    font-size: 20px;
    font-weight: 900;
}

.btn-calc {
    width: 100%;
    background: var(--gold-gradient);
    border: none;
    color: #030F0A;
    font-weight: 800;
    font-size: 14px;
    padding: 14px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: var(--gold-glow);
    transition: var(--transition-smooth);
}

.btn-calc:hover {
    box-shadow: 0 0 25px rgba(229, 192, 123, 0.5);
}

/* Dashboard Tab 4: Namaz Vakitleri & Live Countdown Widget */
.vakitler-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vakitler-countdown {
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.08) 0%, rgba(255, 255, 255, 0) 80%), rgba(255, 255, 255, 0.01);
    border: 1px dashed var(--border-color-active);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
}

.countdown-lbl {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.countdown-timer {
    font-size: 40px;
    font-weight: 900;
    color: var(--gold-light);
    letter-spacing: 2px;
    font-family: 'Outfit', sans-serif;
    text-shadow: var(--gold-glow);
}

.vakitler-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.time-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 12px 18px;
    border-radius: 12px;
    transition: var(--transition-fast);
}

.time-row.active {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}

.time-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
}

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

.time-row.active .time-label i, .time-row.active .time-label {
    color: var(--gold-light);
}

.time-val {
    font-size: 15px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.time-row.active .time-val {
    color: var(--gold-light);
    text-shadow: 0 0 8px rgba(229, 192, 123, 0.4);
}

/* --- Quran & Dua Library Simulator Section --- */
.quran-row {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
}

/* Library List Panel */
.library-selector-container {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 20px;
    height: 580px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lib-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 4px;
}

.lib-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lib-tab-btn.active {
    background: var(--gold-gradient);
    color: #030F0A;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.lib-search-box {
    position: relative;
    width: 100%;
}

.lib-search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.lib-search-box input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: #FFFFFF;
    border-radius: 8px;
    padding: 10px 12px 10px 36px;
    font-size: 13px;
    outline: none;
    transition: var(--transition-fast);
}

.lib-search-box input:focus {
    border-color: var(--gold-light);
}

.lib-items-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 4px;
}

.lib-items-list::-webkit-scrollbar {
    width: 4px;
}

.lib-items-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 2px;
}

.lib-item-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-fast);
}

.lib-item-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-color-active);
}

.lib-item-card.active {
    background: rgba(229, 192, 123, 0.06);
    border-color: var(--border-color-active);
}

.lib-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lib-item-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.lib-item-card.active .lib-item-title {
    color: var(--gold-light);
}

.lib-item-sub {
    font-size: 11px;
    color: var(--text-muted);
}

.lib-item-card i {
    font-size: 12px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.lib-item-card:hover i, .lib-item-card.active i {
    color: var(--gold-light);
    transform: translateX(2px);
}

/* Detailed Viewer Panel */
.library-viewer-container {
    padding: 40px;
    height: 580px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
}

.library-viewer-container::-webkit-scrollbar {
    width: 4px;
}

.library-viewer-container::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 2px;
}

.viewer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.viewer-meta h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.viewer-meta p {
    font-size: 12px;
    color: var(--text-secondary);
}

.viewer-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(229, 192, 123, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewer-icon-box i {
    font-size: 20px;
    color: var(--gold-light);
}

.viewer-audio-player {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 14px 20px;
    border-radius: 16px;
}

.player-progress-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.player-time {
    font-size: 11px;
    color: var(--text-muted);
}

.progress-bar-wrap {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 3px;
    width: 0%;
    position: relative;
    box-shadow: 0 0 8px rgba(229, 192, 123, 0.5);
    transition: width 0.1s linear;
}

.btn-player-loop {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 8px;
}

.btn-player-loop.active {
    color: var(--gold-light);
    text-shadow: var(--gold-glow);
}

.viewer-texts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.arabic-display {
    font-size: 30px;
    color: var(--gold-light);
    text-align: right;
    line-height: 1.9;
    direction: rtl;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    font-family: 'Amiri', serif;
}

.text-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.text-sec-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--gold-light);
    letter-spacing: 0.5px;
}

.text-sec-content {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Screenshot Gallery Section (V2 Scroll Snap) --- */
.scroll-track-wrapper {
    position: relative;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    padding-bottom: 20px;
}

.scroll-track-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.scroll-track {
    display: flex;
    gap: 24px;
    scroll-snap-type: x mandatory;
    width: max-content;
}

.scroll-slide {
    width: 260px;
    height: 520px;
    scroll-snap-align: start;
    border-radius: 20px;
    overflow: hidden;
    border: 6px solid #1e293b;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.scroll-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scroll-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.indicator.active {
    background: var(--gold-light);
    width: 24px;
    border-radius: 4px;
}

/* --- Privacy Page Layout --- */
.privacy-wrap {
    max-width: 800px;
    margin: 160px auto 80px auto;
}

.privacy-inner {
    padding: 60px;
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--gold-light);
    font-size: 15px;
    margin-bottom: 35px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-back-home:hover {
    color: #fff;
    transform: translateX(-4px);
}

.privacy-title {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 25px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.privacy-intro h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
}

.privacy-intro p {
    color: var(--text-secondary);
    font-size: 15.5px;
}

.line-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 45px 0;
}

.privacy-sections-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.privacy-block h2 {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--gold-light);
}

.privacy-block p {
    color: var(--text-secondary);
    font-size: 15.5px;
    line-height: 1.75;
}

.privacy-block a {
    color: var(--gold-light);
    text-decoration: underline;
}

/* --- Footer --- */
.footer {
    background: #020a06;
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand i {
    font-size: 24px;
    color: var(--gold-light);
}

.footer-brand span {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-right {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

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

.footer-info-item {
    display: flex;
    gap: 8px;
    font-size: 13px;
}

.footer-info-item .label {
    color: var(--text-muted);
    font-weight: 700;
}

.footer-info-item .value {
    color: var(--text-secondary);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition-fast);
}

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

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    .hero-row {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-subtext {
        justify-content: center;
    }
    
    .sim-info-box {
        display: none;
    }
    
    .widgets-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quran-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .library-selector-container, .library-viewer-container {
        height: auto;
        max-height: 500px;
    }
    
    .nav-menu {
        display: none; /* Mobile menu collapsed for simplicity */
    }
}

@media (max-width: 768px) {
    .manevi-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .tasbih-flex {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .kaza-flex {
        grid-template-columns: 1fr;
    }
    
    .privacy-wrap {
        margin-top: 120px;
        padding: 0 15px;
    }
    
    .privacy-inner {
        padding: 35px 25px;
    }
    
    .privacy-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 38px;
    }
    
    .kaza-results-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .vakitler-list {
        grid-template-columns: 1fr;
    }
}
