/* =============================================
   KURAN AYETLERİ - ANA CSS DOSYASI
   Diyanet Kuran sitesi tarzında tasarım
   ============================================= */

/* CSS Değişkenleri */
:root {
    /* Ana Renkler - Yeşil tonları (İslami) */
    --primary-color: #1a5f4a;
    --primary-dark: #0d3d2f;
    --primary-light: #2d8b6e;
    --secondary-color: #c9a84c;
    --secondary-light: #dfc06b;
    
    /* Arka Plan Renkleri */
    --bg-color: #f5f1e8;
    --bg-light: #faf8f3;
    --bg-dark: #e8e0d0;
    --bg-card: #ffffff;
    
    /* Metin Renkleri */
    --text-color: #2c2c2c;
    --text-light: #666666;
    --text-muted: #888888;
    --text-arabic: #1a3a30;
    
    /* Diğer */
    --border-color: #d4c9b5;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    
    /* Fontlar */
    --font-arabic: 'Scheherazade New', 'Amiri', serif;
    --font-main: 'Poppins', sans-serif;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Üst Dekoratif Çizgi */
.top-decoration {
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   HEADER
   ============================================= */
.main-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-arabic {
    font-family: var(--font-arabic);
    font-size: 1.3rem;
    color: var(--secondary-light);
    line-height: 1.2;
}

.logo-turkish {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Navigasyon */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 10px;
}

.main-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.main-nav a i {
    font-size: 0.9rem;
}

/* Mobil Menü Butonu */
.mobile-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* =============================================
   MOBİL MENÜ
   ============================================= */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--primary-dark);
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
}

.close-menu {
    background: none;
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px;
}

.mobile-menu li {
    margin-bottom: 10px;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =============================================
   ANA İÇERİK
   ============================================= */
.main-content {
    flex: 1;
    padding: 40px 0;
}

/* =============================================
   ANASAYFA - HERO
   ============================================= */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    margin-bottom: 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-bismillah {
    font-family: var(--font-arabic);
    font-size: 2.5rem;
    color: var(--secondary-light);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Arama Kutusu */
.search-box {
    max-width: 550px;
    margin: 0 auto;
}

.search-form {
    display: flex;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.search-form input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    font-size: 1rem;
    font-family: var(--font-main);
    color: var(--text-color);
}

.search-form input::placeholder {
    color: var(--text-muted);
}

.search-form input:focus {
    outline: none;
}

.search-form button {
    padding: 18px 30px;
    background: var(--secondary-color);
    border: none;
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-form button:hover {
    background: var(--secondary-light);
}

/* =============================================
   CÜZ/SURE/AYET SEÇİM KUTUSU
   ============================================= */
.secim-kutusu {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
}

.secim-baslik {
    text-align: center;
    margin-bottom: 25px;
}

.secim-baslik h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.secim-baslik h3 i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.secim-baslik p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.secim-form {
    max-width: 900px;
    margin: 0 auto;
}

.secim-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.secim-grup {
    flex: 1;
    min-width: 150px;
}

.secim-grup label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.secim-grup label i {
    color: var(--primary-color);
    margin-right: 5px;
}

.secim-grup select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    background: white;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.secim-grup select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 95, 74, 0.1);
}

.secim-btn-grup {
    min-width: 140px;
}

.secim-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.secim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 95, 74, 0.3);
}

@media (max-width: 768px) {
    .secim-row {
        flex-direction: column;
    }
    
    .secim-grup {
        width: 100%;
    }
}

/* =============================================
   AYET KARTLARI
   ============================================= */
.section-title {
    text-align: center;
    margin-bottom: 35px;
}

.section-title h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.section-title h2 i {
    color: var(--secondary-color);
}

.section-title p {
    color: var(--text-light);
    margin-top: 8px;
}

.ayetler-grid {
    display: grid;
    gap: 25px;
}

.ayet-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.ayet-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.ayet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-dark);
}

.ayet-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ayet-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.ayet-sure-name {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.05rem;
}

.ayet-sure-name small {
    display: block;
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.8rem;
}

.ayet-actions {
    display: flex;
    gap: 8px;
}

.ayet-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ayet-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(26, 95, 74, 0.1);
}

.ayet-btn.playing {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Arapça Metin */
.ayet-arabic {
    font-family: var(--font-arabic);
    font-size: 2rem;
    line-height: 2.2;
    text-align: right;
    direction: rtl;
    color: var(--text-arabic);
    padding: 25px 20px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-dark) 100%);
    border-radius: var(--radius);
    margin-bottom: 20px;
    border-right: 4px solid var(--secondary-color);
}

/* Türkçe Meal */
.ayet-turkish {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.9;
    padding: 0 10px;
}

.ayet-turkish::before {
    content: '"';
    font-size: 2rem;
    color: var(--secondary-color);
    font-family: Georgia, serif;
    margin-right: 5px;
}

.ayet-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--bg-dark);
    text-align: center;
}

.ayet-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ayet-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* =============================================
   AYET DETAY SAYFASI
   ============================================= */
.ayet-detail-page {
    max-width: 900px;
    margin: 0 auto;
}

.ayet-detail-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    border-radius: var(--radius-lg);
    padding: 40px;
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.ayet-detail-header h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.ayet-detail-header .sure-arabic {
    font-family: var(--font-arabic);
    font-size: 2rem;
    color: var(--secondary-light);
    margin-bottom: 20px;
}

.audio-player-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 15px 30px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
}

.play-btn-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary-color);
    border: none;
    color: var(--primary-dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn-large:hover {
    transform: scale(1.1);
    background: var(--secondary-light);
}

.audio-info {
    text-align: left;
}

.audio-info span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.audio-info strong {
    font-size: 1.1rem;
}

.ayet-detail-content {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.ayet-detail-arabic {
    font-family: var(--font-arabic);
    font-size: 2.5rem;
    line-height: 2.4;
    text-align: center;
    direction: rtl;
    color: var(--text-arabic);
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-dark) 100%);
    border-radius: var(--radius);
    margin-bottom: 30px;
    border: 2px solid var(--secondary-color);
}

.ayet-detail-turkish {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 2;
    text-align: center;
    padding: 20px;
    position: relative;
}

.ayet-detail-turkish::before,
.ayet-detail-turkish::after {
    font-size: 3rem;
    color: var(--secondary-color);
    font-family: Georgia, serif;
    opacity: 0.5;
}

.ayet-detail-turkish::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
}

.ayet-detail-turkish::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: 0;
}

/* Navigasyon */
.ayet-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--bg-dark);
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--bg-light);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.nav-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.nav-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* =============================================
   SURELER SAYFASI
   ============================================= */
.sureler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.sure-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sure-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.sure-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sure-info {
    flex: 1;
}

.sure-name-turkish {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.sure-name-arabic {
    font-family: var(--font-arabic);
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.sure-meta {
    display: flex;
    gap: 15px;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.sure-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* =============================================
   ARAMA SAYFASI
   ============================================= */
.arama-container {
    max-width: 800px;
    margin: 0 auto;
}

.arama-form {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.arama-form .search-form {
    box-shadow: none;
    border: 2px solid var(--border-color);
}

.arama-sonuc {
    margin-top: 30px;
}

.arama-sonuc h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-dark);
}

.sonuc-yok {
    text-align: center;
    padding: 50px;
    color: var(--text-muted);
}

.sonuc-yok i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

/* =============================================
   FOOTER
   ============================================= */
.main-footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
    padding: 50px 0 0;
    margin-top: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--secondary-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul a:hover {
    opacity: 1;
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
}

.footer-decoration {
    margin-bottom: 15px;
}

.footer-decoration .bismillah {
    font-family: var(--font-arabic);
    font-size: 1.5rem;
    color: var(--secondary-light);
    opacity: 0.8;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 5px;
}

.api-credit a {
    color: var(--secondary-light);
    text-decoration: none;
}

/* =============================================
   REKLAM ALANLARI
   ============================================= */
.reklam-alani {
    background: var(--bg-light);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    margin: 30px 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-section {
        padding: 40px 20px;
    }
    
    .hero-bismillah {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .search-form {
        flex-direction: column;
        border-radius: var(--radius);
    }
    
    .search-form input {
        border-bottom: 1px solid var(--border-color);
    }
    
    .search-form button {
        border-radius: 0 0 var(--radius) var(--radius);
        justify-content: center;
    }
    
    .ayet-arabic {
        font-size: 1.6rem;
        padding: 20px 15px;
    }
    
    .ayet-detail-arabic {
        font-size: 1.8rem;
        padding: 30px 20px;
    }
    
    .ayet-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .audio-player-container {
        flex-direction: column;
        padding: 20px;
    }
    
    .audio-info {
        text-align: center;
    }
    
    .ayet-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-arabic {
        font-size: 1rem;
    }
    
    .logo-turkish {
        font-size: 0.8rem;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .section-title h2 {
        font-size: 1.4rem;
    }
    
    .ayet-card {
        padding: 20px;
    }
    
    .ayet-arabic {
        font-size: 1.4rem;
    }
}

/* =============================================
   ANIMASYONLAR
   ============================================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ayet-card {
    animation: fadeIn 0.5s ease forwards;
}

.ayet-card:nth-child(1) { animation-delay: 0.1s; }
.ayet-card:nth-child(2) { animation-delay: 0.2s; }
.ayet-card:nth-child(3) { animation-delay: 0.3s; }
.ayet-card:nth-child(4) { animation-delay: 0.4s; }
.ayet-card:nth-child(5) { animation-delay: 0.5s; }

/* Loading Spinner */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bg-dark);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Alert Mesajları */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

