/**
 * Anime Tracker - Base (body, container, detail-page title/image/detail layout)
 * https://www.sicakcikolata.com
 * Copyright (C) 2025 Okan Sumer
 * Licensed under GNU General Public License v2
 *
 * Split out of style.css in 0.6.7 (code reorganization, no visual
 * change). Loaded in original cascade order via style.css @imports.
 */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 70%;
    min-width: 320px;
}

/* Anime başlık stili */
.anime-title-container {
    text-align: center;
    margin: 20px 0 40px 0;
}

.anime-title {
    font-size: 28px;
    color: #333;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* Anime resim container ve resim stilleri */
.anime-header {
    display: flex;
    justify-content: center;
    margin: 0 0 40px 0;
}

.anime-cover {
    width: 400px;
    height: 600px;
    object-fit: contain;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.anime-cover:hover {
    transform: scale(1.02);
}

/* Anime detayları container ve içerik stilleri */
.anime-details-container {
    max-width: 800px;
    margin: 0 auto;
}

.anime-details {
    background-color: #ffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.detail-row {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    min-width: 150px;
    font-weight: 600;
    color: #495057;
    font-size: 1.1em;
}

.detail-value {
    flex: 1;
    color: #212529;
    font-size: 1.1em;
    line-height: 1.6;
}


/* Synopsis translation meta (0.7.1) - small, grey note shown below the
   English synopsis on the detail page, with a status dot:
   yellow = AI translation ('ai'), green = curator-reviewed ('reviewed'). */
.synopsis-meta {
    display: block;
    margin-top: 8px;
    color: #888;
    font-size: 0.85em;
    line-height: 1.4;
}

.synopsis-meta .translation-note {
    color: #888;
    text-decoration: underline;
}

.synopsis-meta .translation-note:hover {
    color: #555;
}

.synopsis-status {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
    background-color: #ccc;
}

.synopsis-status-ai {
    background-color: #e0b000;
}

.synopsis-status-reviewed {
    background-color: #2e9e4f;
}

/* Inline anime link inside a synopsis (1.1.19), produced from the
   [[anime:<mal_id>|label]] shortcode by render_synopsis(). Kept subtle so
   the reference reads as part of the prose, not a button. */
.synopsis-link {
    color: #3a7bd5;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.synopsis-link:hover {
    color: #285a9e;
}
