@import url('https://fonts.googleapis.com/css2?family=UnifrakturMaguntia&display=swap');
/* ZenyaLive Premium Blog Post Design System - Google Architecture (Dark Theme) */
:root {
    --post-max-width: 720px;
    --red: #EC3655;
    --red-hover: #D02B47;
    --black: #050505;
    --gray-900: #111111;
    --gray-800: #1a1a1a;
    --gray-700: #333333;
    --gray-400: #999999;
    --gray-300: #cccccc;
    --white: #ffffff;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

/* Base Homogenization - Dark Mode */
body.subpage {
    background-color: var(--black);
    color: var(--gray-300);
    line-height: 1.8;
    font-size: 1.1rem;
    -webkit-font-smoothing: antialiased;
}



.logo-zenya {
    color: var(--white) !important;
}

.nav-links a {
    color: var(--gray-300) !important;
}

/* Optimized Hero Section - Reintegrated Background Architecture */
.blog-hero {
    position: relative;
    padding: 160px 20px 100px;
    text-align: center;
    background-size: cover !important;
    background-position: center !important;
    border-bottom: 1px solid var(--gray-800);
}

.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.95) 100%);
    z-index: 1;
}

.blog-hero .container {
    position: relative;
    z-index: 2;
    max-width: var(--post-max-width);
    margin: 0 auto;
}

.blog-hero .blog-category {
    color: var(--red);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.blog-hero h1 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
    letter-spacing: -0.02em;
}

/* Article Content Styling */
.blog-content {
    padding: 60px 20px 100px;
    text-align: left;
}

.blog-content .container {
    max-width: var(--post-max-width);
    margin: 0 auto;
}

.blog-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin: 70px 0 30px;
    line-height: 1.3;
}

.blog-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin: 40px 0 20px;
}

.blog-content p {
    margin-bottom: 30px;
}

.blog-content .container > p:first-of-type::first-letter {
    font-family: 'UnifrakturMaguntia', 'Engravers\' Old English BT', cursive;
    font-size: 4.5rem;
    float: left;
    line-height: 0.8;
    margin: 0.1em 0.15em 0 0;
    color: var(--red);
    text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
    font-weight: normal;
}

.blog-content strong, .blog-content b {
    color: var(--white);
    font-weight: 700;
}

/* Link Styling */
.blog-content a {
    color: var(--red);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.blog-content a:hover {
    border-bottom-color: var(--red);
}

/* Image Styling */
.blog-content img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 50px 0;
    border: 1px solid var(--gray-800);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Table Optimization */
.table-container {
    margin: 50px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-800);
    background: var(--gray-900);
    width: 100%;
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.blog-content th {
    background: var(--gray-800);
    color: var(--white);
    padding: 20px 25px;
    font-weight: 800;
    text-align: left;
}

.blog-content td {
    padding: 18px 25px;
    border-bottom: 1px solid var(--gray-800);
    color: var(--gray-400);
    text-align: left;
}

/* Homogenized FAQ System */
.faq-section {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 24px;
    padding: 40px;
    margin-top: 80px;
}

.faq-section h2 {
    margin-top: 0 !important;
    font-size: 1.8rem !important;
}

.faq-item {
    border-bottom: 1px solid var(--gray-800);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-question::before {
    content: 'Q:';
    color: var(--red);
    font-weight: 900;
}

.faq-answer {
    color: var(--gray-400);
    padding-left: 32px;
}

/* Footer Adjustments */
footer {
    background-color: var(--black) !important;
    border-top: 1px solid var(--gray-800) !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .blog-hero { padding: 140px 20px 30px; }
    .blog-hero h1 { font-size: 2.2rem; }
    .blog-content h2 { font-size: 1.8rem; }
    .faq-section { padding: 30px; }
    
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .blog-content th, .blog-content td {
        padding: 12px 15px;
        font-size: 0.9rem;
        white-space: nowrap;
    }
}
