:root {
    --primary-bg: #0D1A14;
    --secondary-bg: #1A3329;
    --accent: #C4A574;
    --accent-muted: rgba(196, 165, 116, 0.2);
    --text-main: #E8E4DD;
    --text-dim: rgba(232, 228, 221, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--accent);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
    transition: 0.3s;
}

.back-btn:hover {
    transform: translateX(-5px);
}

header {
    margin-bottom: 60px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 30px;
}

.doc-tag {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 10px;
    display: block;
}

.page-title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: var(--card-radius);
    margin-bottom: 30px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-stat {
    text-align: center;
    border-right: 1px solid var(--glass-border);
}

.info-stat:last-child {
    border-right: none;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-dim);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

th {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.highlight-row {
    background: var(--accent-muted);
}

.icon-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-box i {
    font-size: 24px;
    color: var(--accent);
}

.infographic-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.content-img {
    width: 100%;
    border-radius: 15px;
    margin: 20px 0;
    max-height: 400px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .page-title { font-size: 32px; }
    .info-stat { border-right: none; border-bottom: 1px solid var(--glass-border); padding-bottom: 20px; }
}
