/* ========== VARIABLES ========== */
:root {
    --sylus-red: #8b0000;
    --sylus-crimson: #dc143c;
    --bg-dark: #050505;
    --card-bg: #0f0f12;
    --text-main: #d1d1d1;
    --text-dim: #888888;
    --gold-accent: #c5a059;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
}

/* ========== NAVIGATION ========== */
nav {
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.8;
}

.verdict-btn {
    background: var(--sylus-red);
    color: white !important;
    padding: 5px 15px;
    border-radius: 20px;
}

/* ========== HEADER ========== */
header {
    padding: 380px 20px;
    text-align: center;
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
}

header h1 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

header p {
    font-size: 1.4rem;
    color: var(--gold-accent);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* ========== SECTIONS ========== */
section {
    margin-bottom: 120px;
}

/* ========== TYPOGRAPHY ========== */
h2 {
    font-size: 2.5rem;
    color: var(--sylus-crimson);
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

h3 {
    font-size: 1.8rem;
    color: var(--gold-accent);
    margin-top: 50px;
    margin-bottom: 25px;
}

p {
    margin-bottom: 30px;
    font-size: 1.15rem;
    text-align: justify;
}

/* ========== IMAGE PLACEHOLDER ========== */
.image-placeholder {
    margin: 50px 0;
    text-align: center;
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 8px;
}

.image-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.image-placeholder p {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-top: 20px;
    font-style: italic;
    text-align: center;
}

/* ========== QUOTE BOX ========== */
.quote-box {
    border-left: 4px solid var(--sylus-red);
    padding: 30px 50px;
    margin: 50px 0;
    background: linear-gradient(90deg, #120505, transparent);
    font-style: italic;
    color: #eee;
    font-size: 1.2rem;
}

/* ========== ANALYSIS CARD ========== */
.analysis-card {
    background: var(--card-bg);
    border: 1px solid #222;
    padding: 40px;
    margin: 40px 0;
    border-radius: 12px;
    border-top: 4px solid var(--sylus-red);
}

.analysis-card h3 {
    margin-top: 0;
}

/* ========== DROPCAP ========== */
.dropcap {
    float: left;
    font-size: 4.2rem;
    line-height: 1;
    padding-top: 4px;
    padding-right: 8px;
    color: var(--sylus-crimson);
}

/* ========== TABLE OF CONTENTS ========== */
.toc {
    background: #0a0a0a;
    padding: 30px;
    border: 1px solid #222;
    margin-bottom: 60px;
}

.toc ul {
    list-style: none;
    padding: 0;
}

.toc li {
    margin-bottom: 10px;
}

.toc a {
    color: var(--gold-accent);
    text-decoration: none;
}

.toc a:hover {
    color: var(--sylus-crimson);
}

/* ========== FOOTER ========== */
.main-footer {
    background: #000;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #2a2f3d;
    margin-top: 50px;
}

.main-footer p {
    text-align: center;
    font-size: 13px;
    margin-bottom: 8px;
    color: #999;
}

.main-footer .disclaimer-mini {
    font-size: 16px;
    margin-top: 10px;
    color: #8a94a8;
}

.main-footer .copyright {
    color: #999;
    font-size: 13px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #8a94a8;
    margin: 0 15px;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #c9a063;
}

.article-main-footer {
    background: #000;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid var(--border);
    margin-top: 50px;
    color: #999;
}

.article-main-footer p {
    text-align: center;
    color: #999;
}

.article-footer-links {
    margin-bottom: 20px;
}

.article-footer-links a {
    color: #999;
    margin: 0 15px;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.article-footer-links a:hover {
    color: var(--accent, #c9a063);
}

.article-copyright{
    color: #999;
    font-size: 13px;
}

.article-disclaimer-mini{
    font-size: 16px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    header {
        padding: 160px 20px;
    }
    header h1 {
        font-size: 2.5rem;
    }
    header p {
        font-size: 1rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.4rem;
    }
    p {
        font-size: 1rem;
    }
    .container {
        padding: 40px 20px;
    }
    .quote-box {
        padding: 20px 25px;
    }
    .analysis-card {
        padding: 25px;
    }
    .toc {
        padding: 20px;
    }
}

.article-header {
    position: relative;
    padding: 430px 20px 120px;
    text-align: center;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center 30%;
    z-index: -1;
}

.article-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #05070c);
    pointer-events: none;
    z-index: 0;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #c9a063, #8b6b3a);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #d4ae6e, #9b7a45);
}
