@import url('https://fonts.googleapis.com/css2?family=Ma+Shan+Zheng&family=Noto+Serif+SC:wght@400;700&display=swap');

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

body {
    font-family: 'Noto Serif SC', 'Segoe UI', 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
    background: #0a0a0a;
    color: #e8d5b5;
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 69, 19, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 69, 19, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   HEADER - YENİ MODERN TASARIM
   ============================================ */
header {
    background: linear-gradient(135deg, rgba(26, 10, 10, 0.98), rgba(10, 10, 26, 0.98));
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 20px;
    padding: 12px 25px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.header-top .site-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
}

.header-top .user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-top .user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: 0.3s;
    flex-shrink: 0;
}

.header-top .user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-top .user-avatar:hover {
    border-color: #ffd700;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.header-top #userDisplay {
    color: #ffd700;
    font-weight: 600;
    font-size: 15px;
}

/* Ana Navigasyon */
.header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid rgba(255, 215, 0, 0.06);
}

.header-nav button {
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    background: rgba(255, 215, 0, 0.05);
    color: #e8d5b5;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Noto Serif SC', 'Segoe UI', 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
    white-space: nowrap;
}

.header-nav button:hover {
    background: rgba(255, 215, 0, 0.12);
    transform: translateY(-1px);
}

.header-nav button i {
    margin-right: 6px;
}

.header-nav .nav-btn {
    background: rgba(255, 215, 0, 0.08);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.12);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.header-nav .nav-btn:hover {
    background: rgba(255, 215, 0, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.08);
}

.header-nav .nav-btn.active {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.05);
}

.header-nav .btn-special {
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    color: #0a0a0a !important;
    border: none;
    font-weight: 700;
}

.header-nav .btn-special:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.25);
}

/* Menüdeki butonların renkleri */
.btn-chat { color: #00ffcc; border-color: rgba(0, 255, 204, 0.2); }
.btn-chat:hover { background: rgba(0, 255, 204, 0.1); }

.btn-admin { 
    background: linear-gradient(135deg, #ffd700, #ff6b00); 
    color: #0a0a0a !important; 
    border: none; 
    font-weight: 700;
}

.btn-watchlist { color: #ffd700; border-color: rgba(255, 215, 0, 0.2); }
.btn-watchlist:hover { background: rgba(255, 215, 0, 0.1); }

.btn-reminder { color: #ffd700; border-color: rgba(255, 215, 0, 0.15); }
.btn-announce { color: #ffd700; border-color: rgba(255, 215, 0, 0.15); }
.btn-guide { color: #00d4ff; border-color: rgba(0, 212, 255, 0.15); }
.btn-info { color: #00d4ff; border-color: rgba(0, 212, 255, 0.15); }
.btn-logout { color: #ff4444; border-color: rgba(255, 68, 68, 0.15); }

.lang-selector {
    display: flex;
    gap: 4px;
    align-items: center;
}

.lang-selector button {
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    border: 1px solid rgba(255, 215, 0, 0.1);
    background: rgba(255, 215, 0, 0.05);
    color: #888;
    cursor: pointer;
}

.lang-selector .lang-active {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border-color: #ffd700;
}

/* ⭐ SITE TITLE */
.site-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin: 0;
}

.deny-text {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 3rem;
    background: linear-gradient(135deg, #00d4ff, #0088ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.2);
}

.verse-text {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 2.8rem;
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.deny-text.admin-mode {
    background: linear-gradient(135deg, #ff6b00, #ffd700) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.3) !important;
}

/* ============================================
   ARAMA
   ============================================ */
#searchBar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

#searchInput {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid rgba(255, 215, 0, 0.12);
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.7);
    color: #e8d5b5;
    font-size: 15px;
    font-family: 'Noto Serif SC', 'Segoe UI', 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
}

#searchInput:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.05);
}

#searchBtn {
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    color: #0a0a0a !important;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

#searchBtn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

/* ============================================
   KARTLAR - YENİ TASARIM
   ============================================ */
#contentArea {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.card {
    background: linear-gradient(145deg, rgba(26, 10, 10, 0.92), rgba(10, 10, 26, 0.92));
    border-radius: 20px;
    padding: 18px 18px 25px 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 215, 0, 0.06);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 480px;
    max-height: 560px;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: 0.6s;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(255, 215, 0, 0.25);
    box-shadow: 0 15px 50px rgba(139, 69, 19, 0.2), 0 0 60px rgba(255, 215, 0, 0.03);
}

.card .card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid rgba(255, 215, 0, 0.06);
    flex-shrink: 0;
    transition: 0.4s;
}

.card:hover .card-image {
    border-color: rgba(255, 215, 0, 0.15);
}

.card .card-placeholder {
    height: 280px;
    background: rgba(255, 215, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    border-radius: 14px;
    flex-shrink: 0;
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
    border: 2px solid rgba(255, 215, 0, 0.04);
}

.card h3 {
    margin-top: 14px;
    margin-bottom: 4px;
    color: #ffd700;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
    min-height: 46px;
}

.card .badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 6px;
    flex-shrink: 0;
    min-height: 30px;
}

.card .badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.1);
    color: #e8d5b5;
    font-family: 'Noto Serif SC', 'Segoe UI', 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
}

.card .badge-status {
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.card .badge-rating {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.15);
    color: #ffd700;
}

.card .badge-owner {
    background: rgba(100, 100, 255, 0.1);
    border-color: rgba(100, 100, 255, 0.15);
    color: #8888ff;
}

.card .badge-category {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
}

/* İzlenecekler butonu */
.card .watchlist-btn {
    margin-top: auto;
    margin-bottom: 2px;
    background: rgba(255, 215, 0, 0.08);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.12);
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    font-family: 'Noto Serif SC', 'Segoe UI', 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
    z-index: 10;
    position: relative;
    flex-shrink: 0;
    text-align: center;
    letter-spacing: 0.3px;
}

.card .watchlist-btn i {
    margin-right: 6px;
}

.card .watchlist-btn:hover {
    background: rgba(255, 215, 0, 0.18);
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
}

/* Durum renkleri */
.status-devam { color: #00ff88; }
.status-sezonfinali { color: #ffa500; }
.status-durduruldu { color: #ff4444; }
.status-tamamlandi { color: #00ccff; }

/* ============================================
   MODALLAR
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    overflow-y: auto;
}

.modal-content {
    background: linear-gradient(145deg, rgba(26, 10, 10, 0.98), rgba(10, 10, 26, 0.98));
    margin: 2% auto;
    padding: 30px;
    width: 95%;
    max-width: 750px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
}

.login-box {
    max-width: 450px;
    text-align: center;
}

.login-header {
    margin-bottom: 30px;
}

.login-header .deny-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 4rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

.login-header .deny-title .deny-text {
    font-size: 4rem;
    background: linear-gradient(135deg, #00d4ff, #0088ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(0, 212, 255, 0.2);
}

.login-header .deny-title .verse-text {
    font-size: 4rem;
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.close {
    float: right;
    font-size: 30px;
    cursor: pointer;
    color: #ffd700;
    transition: 0.3s;
}

.close:hover {
    transform: rotate(90deg);
    color: #ff6b00;
}

form input, form select, form textarea {
    width: 100%;
    padding: 12px 15px;
    margin: 8px 0;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 215, 0, 0.12);
    color: #e8d5b5;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.3s;
    font-family: 'Noto Serif SC', 'Segoe UI', 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
}

form input:focus, form select:focus, form textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.05);
}

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

form button {
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    color: #0a0a0a !important;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    font-family: 'Noto Serif SC', 'Segoe UI', 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
}

form button:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 30px rgba(255, 215, 0, 0.15);
}

#loginSubmit {
    background: linear-gradient(135deg, #00d4ff, #0088ff) !important;
    color: #fff !important;
    border: none !important;
}

#loginSubmit:hover {
    background: linear-gradient(135deg, #0088ff, #00d4ff) !important;
}

#registerSubmit {
    background: linear-gradient(135deg, #ffd700, #ff6b00) !important;
    color: #0a0a0a !important;
    border: none !important;
}

.back-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 11px;
    transition: 0.3s;
    font-family: 'Noto Serif SC', 'Segoe UI', 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
    z-index: 10;
}

.back-btn:hover {
    background: rgba(255, 215, 0, 0.2);
}

.file-upload {
    background: rgba(255, 215, 0, 0.05);
    border: 2px dashed rgba(255, 215, 0, 0.15);
    border-radius: 10px;
    padding: 15px;
    margin: 8px 0;
    text-align: center;
}

.file-upload label {
    cursor: pointer;
    color: #ffd700;
    font-family: 'Noto Serif SC', 'Segoe UI', 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
}

.file-upload input[type="file"] {
    display: none;
}

#coverPreview {
    margin-top: 10px;
}

#coverPreview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 10px;
    border: 2px solid rgba(255, 215, 0, 0.1);
}

.rating-container {
    background: rgba(255, 215, 0, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin: 8px 0;
}

.star-rating {
    display: flex;
    gap: 5px;
    justify-content: center;
    font-size: 28px;
    margin: 10px 0;
}

.star {
    cursor: pointer;
    color: #444;
    transition: 0.3s;
}

.star:hover,
.star.active {
    color: #ffd700;
    transform: scale(1.2);
}

#ratingDisplay {
    text-align: center;
    color: #ffd700;
    font-weight: bold;
}

.detail-item {
    margin: 12px 0;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border-left: 3px solid #ffd700;
    text-align: left;
}

.detail-item strong {
    color: #ffd700;
}

#detailContent img {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 60vh !important;
    object-fit: contain !important;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.15);
    margin: 0 auto 20px auto;
    display: block;
    background: rgba(0, 0, 0, 0.3);
}

#detailContent h2 {
    color: #ffd700;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin-bottom: 5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.character-tag {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    padding: 4px 12px;
    margin: 4px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid rgba(255, 215, 0, 0.12);
    font-size: 13px;
}

.character-tag:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

.scene-item {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    margin: 6px 0;
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scene-item button {
    background: #ff4444;
    color: #fff !important;
    border: none;
    padding: 4px 12px;
    border-radius: 5px;
    cursor: pointer;
    width: auto;
    font-size: 13px;
}

#floatingAddBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    color: #0a0a0a !important;
    border: none;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 5px 30px rgba(255, 215, 0, 0.3);
    transition: 0.3s;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
}

#floatingAddBtn:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 5px 40px rgba(255, 215, 0, 0.5);
}

.profile-avatar {
    text-align: center;
    margin: 20px 0;
}

#avatarPreview {
    display: inline-block;
}

#currentAvatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #ffd700;
    object-fit: cover;
}

/* ============================================
   İZLENECEKLER
   ============================================ */
.watchlist-filter {
    transition: 0.3s;
    padding: 5px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    background: rgba(255, 215, 0, 0.05);
    color: #888;
    border: 1px solid rgba(255, 215, 0, 0.1);
    font-family: 'Noto Serif SC', 'Segoe UI', 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
}

.watchlist-filter:hover {
    transform: scale(1.05);
}

#watchlistContent {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 5px;
}

#watchlistContent::-webkit-scrollbar {
    width: 6px;
}

#watchlistContent::-webkit-scrollbar-track {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
}

#watchlistContent::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 10px;
}

#watchlistContent::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.5);
}

#watchlistContent .card {
    background: linear-gradient(145deg, rgba(26, 10, 10, 0.9), rgba(10, 10, 26, 0.9));
    border-radius: 15px;
    padding: 15px;
    transition: 0.4s;
    border: 1px solid rgba(255, 215, 0, 0.08);
    cursor: default;
    min-height: auto;
    max-height: none;
}

#watchlistContent .card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.2);
}

#watchlistContent .card h3 {
    color: #ffd700;
    font-size: 15px;
    font-weight: 700;
    margin-top: 10px;
}

#watchlistContent .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(255, 215, 0, 0.08);
}

#watchlistContent .badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    margin-top: 4px;
    margin-right: 4px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.12);
    color: #ffd700;
}

#watchlistSearch {
    flex: 1;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 215, 0, 0.12);
    color: #e8d5b5;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.3s;
    font-family: 'Noto Serif SC', 'Segoe UI', 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
}

#watchlistSearch:focus {
    outline: none;
    border-color: #ffd700;
}

/* ============================================
   ADMIN PANELİ
   ============================================ */
#adminPanelModal .admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

#adminPanelModal .stat-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

#adminPanelModal .stat-card .number {
    font-size: 2rem;
    color: #ffd700;
    font-weight: bold;
}

#adminPanelModal .stat-card .label {
    color: #888;
    margin-top: 5px;
}

#adminPanelModal table {
    width: 100%;
    border-collapse: collapse;
}

#adminPanelModal th {
    color: #ffd700;
    text-align: left;
    padding: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

#adminPanelModal td {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.05);
}

#adminPanelModal tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

/* ============================================
   BİLGİ SAYFASI
   ============================================ */
#infoModal .modal-content {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

#infoModal .modal-content::-webkit-scrollbar {
    width: 6px;
}

#infoModal .modal-content::-webkit-scrollbar-track {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
}

#infoModal .modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 10px;
}

/* ============================================
   FOOTER - YENİ TASARIM
   ============================================ */
footer {
    background: linear-gradient(135deg, rgba(26, 10, 10, 0.98), rgba(10, 10, 26, 0.98));
    border-top: 1px solid rgba(255, 215, 0, 0.12);
    padding: 25px 0;
    margin-top: 40px;
    text-align: center;
    color: #888;
    font-size: 13px;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

footer .footer-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    box-sizing: border-box;
}

footer .footer-brand {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #ffd700, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

footer .footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

footer .footer-links a {
    color: #ffd700;
    text-decoration: none;
    transition: 0.3s;
}

footer .footer-links a:hover {
    color: #ff6b00;
    text-decoration: underline;
}

footer .footer-divider {
    color: #444;
}

footer .footer-copyright {
    color: #555;
    font-size: 12px;
}

footer .footer-creator {
    color: #444;
    font-size: 11px;
    letter-spacing: 0.5px;
}

/* ============================================
   MOBİL UYUM
   ============================================ */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .header-top .site-title {
        font-size: 1.8rem;
    }
    
    .header-nav {
        gap: 4px;
    }
    
    .header-nav button {
        font-size: 10px;
        padding: 4px 10px;
    }
    
    .header-nav .nav-btn {
        font-size: 12px;
        padding: 6px 14px;
    }
}

@media (max-width: 600px) {
    #contentArea {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 18px;
    }
    
    #watchlistContent {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    .card {
        min-height: 400px;
        max-height: 460px;
        padding: 14px 14px 20px 14px;
        border-radius: 16px;
    }
    
    .card .card-image {
        height: 220px;
    }
    
    .card .card-placeholder {
        height: 220px;
        font-size: 55px;
    }
    
    .card h3 {
        font-size: 15px;
        min-height: 38px;
    }
    
    .card .badge {
        font-size: 10px;
        padding: 2px 10px;
    }
    
    .card .badge-group {
        min-height: 24px;
    }
    
    .card .watchlist-btn {
        font-size: 11px;
        padding: 8px 10px;
    }
    
    .site-title {
        font-size: 2rem;
    }
    
    .deny-text {
        font-size: 2.2rem;
    }
    
    .verse-text {
        font-size: 2rem;
    }
    
    #floatingAddBtn {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
    
    .user-avatar {
        width: 40px;
        height: 40px;
    }
    
    #userDisplay {
        font-size: 14px;
    }
    
    .modal-content {
        padding: 20px;
        margin: 5% auto;
        width: 98%;
    }
    
    .nav-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .login-header .deny-title {
        font-size: 2.8rem !important;
    }
    
    .login-header .deny-title .deny-text {
        font-size: 2.8rem !important;
    }
    
    .login-header .deny-title .verse-text {
        font-size: 2.8rem !important;
    }

    footer .footer-brand {
        font-size: 1.4rem;
    }
    
    footer .footer-links {
        gap: 10px;
        font-size: 12px;
    }
    
    footer {
        padding: 20px 0;
    }
}

@media (max-width: 400px) {
    #contentArea {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }
    
    .card {
        min-height: 340px;
        max-height: 390px;
        padding: 10px 10px 16px 10px;
    }
    
    .card .card-image {
        height: 180px;
    }
    
    .card .card-placeholder {
        height: 180px;
        font-size: 45px;
    }
    
    .card h3 {
        font-size: 13px;
        min-height: 32px;
    }
    
    .card .badge {
        font-size: 9px;
        padding: 2px 8px;
    }
    
    .site-title {
        font-size: 1.6rem;
    }
    
    .deny-text {
        font-size: 1.8rem;
    }
    
    .verse-text {
        font-size: 1.6rem;
    }

    footer .footer-brand {
        font-size: 1.2rem;
    }
    
    footer .footer-links {
        gap: 8px;
        font-size: 11px;
        flex-direction: column;
    }
    
    footer .footer-divider {
        display: none;
    }
}