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

:root {
    --bg-primary: #f0f1f3;
    --bg-white: #ffffff;
    --bg-dark: #0d0f14;
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a68;
    --text-muted: #8888a0;
    --accent: #c0392b;
    --accent-dark: #a93226;
    --accent-light: #e74c3c;
    --gold: #d4a017;
    --gold-light: #f4d03f;
    --green: #27ae60;
    --green-dark: #219a52;
    --blue: #1a73e8;
    --border: #e2e4e9;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.07);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.10);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.14);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --font-serif: 'Merriweather', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    --max-width: 780px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    color-scheme: light;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #1a1a2e;
    padding: 6px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-sep {
    color: rgba(255,255,255,0.2);
}

.top-bar-weather {
    color: rgba(255,255,255,0.5);
}

.advertorial-label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(255,255,255,0.06);
    padding: 3px 10px;
    border-radius: 3px;
}

/* ===== HEADER ===== */
.header {
    background: #fff;
    padding: 0;
    border-bottom: 3px solid var(--accent);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.header-logo-link {
    text-decoration: none;
}

.header-logo {
    font-family: var(--font-sans);
    font-size: 28px;
    font-weight: 300;
    color: #333;
    letter-spacing: -0.5px;
}

.header-logo strong {
    font-weight: 800;
    color: var(--accent);
}

.header-nav {
    display: flex;
    gap: 0;
}

.header-nav a {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 20px 16px;
    transition: all var(--transition);
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width var(--transition);
}

.header-nav a:hover {
    color: var(--accent);
}

.header-nav a:hover::after,
.header-nav a.active::after {
    width: 100%;
}

.header-nav a.active {
    color: var(--accent);
}

.header-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    padding: 8px;
}

.header-auth {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.header-auth-link {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.header-auth-link:hover {
    color: var(--accent);
}

.header-auth-btn {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
}

.header-auth-btn:hover {
    background: var(--accent-dark);
    color: #fff;
}
/* Mobile Nav */
.mobile-nav {
    display: none;
    background: #fff;
    padding: 12px 20px;
    flex-direction: column;
    gap: 4px;
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav a {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    color: #444;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: #f5f5f5;
    color: var(--accent);
}

/* Mobile nav backdrop */
.mobile-nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1000;
}

.mobile-nav-backdrop.active {
    display: block;
}

/* ===== BREAKING NEWS ===== */
.breaking-bar {
    background: var(--accent);
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 36px;
}

.breaking-label {
    background: #8b0000;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.breaking-label::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 0;
    width: 24px;
    height: 100%;
    background: #8b0000;
    transform: skewX(-12deg);
    z-index: -1;
}

.breaking-ticker {
    flex: 1;
    overflow: hidden;
    padding-left: 16px;
}

.ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: ticker-scroll 40s linear infinite;
}

.ticker-item {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 0 8px;
}

.ticker-sep {
    color: rgba(255,255,255,0.4);
    padding: 0 8px;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== MAIN ===== */
.main {
    padding: 30px 0 60px;
}

.article-container {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px;
    border: 1px solid var(--border);
}

/* Breadcrumb */
.breadcrumb {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb a {
    color: var(--text-muted);
    font-weight: 600;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb .current {
    color: var(--text-secondary);
    font-weight: 600;
}

/* Category Tag */
.category-tag {
    display: inline-block;
    color: var(--accent);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 4px 12px;
    background: rgba(192, 57, 43, 0.06);
    border-radius: 4px;
    border-left: 3px solid var(--accent);
}

/* Title */
.article-title {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 900;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

/* Subtitle */
.article-subtitle {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e8ee;
}

/* Article Meta */
.article-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.author-info {
    display: block;
}

.author-line {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    line-height: 1.6;
}

.author-line .author-name {
    color: #8b0000;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}

.author-line .author-name:hover {
    text-decoration: underline;
    color: var(--accent);
}

.publish-date {
    font-size: 12px;
    color: #555;
    font-family: var(--font-sans);
    font-weight: 400;
    display: block;
    line-height: 1.5;
    margin-top: 1px;
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-white);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.share-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Image */
.article-hero {
    margin-bottom: 32px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.article-hero img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.article-hero:hover img {
    transform: scale(1.02);
}

.article-hero figcaption,
.article-image figcaption {
    background: #f7f8fa;
    padding: 10px 16px;
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
    border-top: 1px solid #eee;
}

/* Article Body */
.article-body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.article-body p {
    margin-bottom: 22px;
}

.article-body p.lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-primary);
    font-weight: 400;
}

.article-body strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Article Images */
.article-image {
    margin: 32px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.article-image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

/* Blockquote */
blockquote {
    margin: 32px 0;
    padding: 28px 32px;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    position: relative;
}

blockquote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 14px;
    font-size: 48px;
    color: var(--accent);
    opacity: 0.15;
    font-family: var(--font-serif);
}

blockquote p {
    font-style: italic;
    font-size: 16px;
    margin-bottom: 10px !important;
    color: var(--text-primary);
    font-family: var(--font-serif);
    line-height: 1.7;
}

blockquote cite {
    font-style: normal;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    font-family: var(--font-sans);
    display: block;
    margin-top: 8px;
}

blockquote cite::before {
    content: '— ';
}

/* Features Box */
.features-box {
    margin: 32px 0;
    padding: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.features-box h3 {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #37474f, #455a64);
    padding: 14px 20px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-box h3 svg {
    color: #fff;
}

.features-box ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    margin: 0;
}

.features-box li {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-primary);
    padding: 12px 16px 12px 40px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    position: relative;
    line-height: 1.4;
}

.features-box li:nth-child(even) {
    border-right: none;
}

.features-box li:nth-last-child(-n+2) {
    border-bottom: none;
}

.features-box li::before {
    content: '✓';
    position: absolute;
    left: 14px;
    color: #43a047;
    font-weight: 700;
    font-size: 15px;
}

/* Defect Info Box */
.defect-info-box {
    margin: 32px 0;
    padding: 28px;
    background: linear-gradient(135deg, #f8f9ff, #f0f2ff);
    border: 1px solid #d8ddf5;
    border-radius: var(--radius-md);
    position: relative;
}

.defect-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #4285f4, var(--blue));
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.defect-info-box h3 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.defect-info-box h3 svg {
    color: var(--blue);
}

.defect-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.defect-list li {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-secondary);
    padding: 12px 16px;
    background: rgba(255,255,255,0.85);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(26, 115, 232, 0.1);
    line-height: 1.6;
}

.defect-list li strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Highlight Box */
.highlight-box {
    margin: 32px 0;
    padding: 24px;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border: 1px solid #ff9800;
    border-radius: var(--radius-md);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.6;
    color: #e65100;
    animation: glow-box 2s ease-in-out infinite;
}

@keyframes glow-box {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 152, 0, 0); }
    50% { box-shadow: 0 0 20px 2px rgba(255, 152, 0, 0.15); }
}

.highlight-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: #ff9800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* CTA Section */
.cta-section {
    margin: 40px 0;
    padding: 40px 28px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.03) 0%, transparent 70%);
    animation: rotate-bg 15s linear infinite;
}

@keyframes rotate-bg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffc107;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    animation: pulse-urgency 2s ease-in-out infinite;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes pulse-urgency {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--green), #2ecc71);
    color: #fff;
    padding: 20px 52px;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
    animation: pulse-cta 2s ease-in-out infinite;
}

@keyframes pulse-cta {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 6px 30px rgba(39, 174, 96, 0.5); }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.cta-button:hover {
    background: linear-gradient(135deg, #2ecc71, var(--green));
    color: #fff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.5);
}

.cta-text {
    display: block;
    margin-bottom: 4px;
}

.cta-subtext {
    display: block;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: 0;
}

.cta-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    margin-top: 18px;
    position: relative;
}

/* CTA Clean */
.cta-section-clean {
    margin: 40px 0;
    text-align: center;
}

.cta-button-clean {
    display: inline-block;
    background: linear-gradient(135deg, var(--green), #2ecc71);
    color: #fff;
    padding: 18px 48px;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
    animation: pulse-cta 2s ease-in-out infinite;
}

.cta-button-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: shine 3s ease-in-out infinite;
}

.cta-button-clean:hover {
    background: linear-gradient(135deg, #2ecc71, var(--green));
    color: #fff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.5);
}

.cta-button-clean .cta-text {
    display: block;
    margin-bottom: 4px;
}

.cta-button-clean .cta-subtext {
    display: block;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: 0;
}

.cta-security-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #777;
    font-size: 12px;
    font-weight: 500;
    margin-top: 14px;
    font-family: var(--font-sans);
}

/* ===== Article Separator ===== */
.article-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, #ddd, transparent);
    margin: 40px 0;
}

/* ===== RELATED ARTICLES ===== */
.related-articles {
    margin-bottom: 40px;
}

.related-title {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-card {
    text-decoration: none;
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #ccc;
}

.related-card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.related-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-card:hover .related-card-img img {
    transform: scale(1.08);
}

.related-card-content {
    padding: 14px;
}

.related-card-tag {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}

.related-card-content h4 {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 8px;
}

.related-card-date {
    font-size: 11px;
    color: var(--text-muted);
}

/* ===== COMMENTS ===== */
.comments-section {
    margin-top: 8px;
    padding-top: 32px;
    border-top: 1px solid #ddd;
}

.comments-title {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

/* Comment Prompt (collapsed state) */
.comment-prompt {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
    padding: 12px 16px;
    background: #f0f2f5;
    border-radius: 28px;
    cursor: pointer;
}

.comment-prompt-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.comment-prompt-avatar svg {
    width: 100%;
    height: 100%;
}

.comment-prompt-btn {
    flex: 1;
    border: none;
    background: none;
    font-family: var(--font-sans);
    font-size: 14px;
    color: #65676b;
    text-align: left;
    cursor: pointer;
    padding: 0;
}

.comment-prompt-btn:hover {
    color: #333;
}

/* Registration Modal */
.registration-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.registration-modal {
    background: #fff;
    border-radius: 14px;
    padding: 36px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 24px 80px rgba(0,0,0,0.3);
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.registration-close {
    position: absolute;
    top: 14px;
    right: 18px;
    border: none;
    background: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.registration-close:hover {
    color: #333;
}

.registration-heading {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.registration-desc {
    font-family: var(--font-sans);
    font-size: 14px;
    color: #65676b;
    margin-bottom: 20px;
}

.registration-submit {
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}

.registration-submit:hover {
    background: var(--accent-dark);
}

/* Comment Form Box (after registration) */
.comment-form-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 24px;
}

.comment-form-logged {
    margin-bottom: 12px;
}

.comment-form-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-form-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.comment-form-user-avatar svg {
    width: 100%;
    height: 100%;
    display: block;
}

.comment-form-user-name {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.comment-form-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.comment-form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.comment-form-field label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    font-family: var(--font-sans);
}

.comment-form-field input,
.comment-form-field textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 14px;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-primary);
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.comment-form-field input:focus,
.comment-form-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}

.comment-form-field textarea {
    resize: vertical;
    min-height: 80px;
    background: #f9f9fb;
    border-radius: 12px;
}

.comment-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
}

.comment-form-tip {
    font-size: 12px;
    color: #999;
    font-family: var(--font-sans);
}

.comment-form-submit {
    background: #333;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.comment-form-submit:hover {
    background: #111;
}

/* Comment Item */
.comment {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.comment:hover {
    box-shadow: none;
}

.comment-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.comment-avatar-img svg {
    width: 100%;
    height: 100%;
    display: block;
}

.comment-avatar-img.small {
    width: 32px;
    height: 32px;
}

.comment-content {
    flex: 1;
    min-width: 0;
}

.comment-bubble {
    background: #f0f2f5;
    border-radius: 18px;
    padding: 10px 14px;
    display: inline-block;
    max-width: 100%;
}

.comment-author {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    margin-bottom: 2px;
}

.comment-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary);
    margin: 0;
    word-wrap: break-word;
}

.comment-image {
    margin-top: 8px;
    border-radius: 12px;
    overflow: hidden;
    max-width: 320px;
}

.comment-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.comment-image img:hover {
    transform: scale(1.02);
}

.comment-actions {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-top: 4px;
    padding-left: 14px;
}

.comment-action-btn {
    border: none;
    background: none;
    color: #65676b;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-sans);
    padding: 0;
    transition: color 0.15s ease;
}

.comment-action-btn:hover {
    text-decoration: underline;
    color: #333;
}

.comment-action-btn.liked {
    color: var(--accent);
}

.like-count {
    font-weight: 400;
    font-size: 11px;
    color: #65676b;
    margin-left: 4px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.like-count svg {
    color: var(--accent);
}

.comment-sep {
    color: #ccc;
    font-size: 12px;
    margin: 0 3px;
    user-select: none;
}

.comment-time {
    font-size: 12px;
    color: #65676b;
    font-weight: 400;
}

/* Reply thread */
.comment-replies {
    margin-left: 50px;
    margin-top: 8px;
    padding-left: 12px;
    border-left: 2px solid #e4e6eb;
}

.comment-replies .comment {
    margin-bottom: 12px;
}

.comment-replies .comment-avatar-img {
    width: 32px;
    height: 32px;
}

/* Inline reply form */
.reply-form {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    margin-left: 50px;
    align-items: flex-start;
}

.reply-form-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.reply-form-avatar svg {
    width: 100%;
    height: 100%;
    display: block;
}

.reply-form-input {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 8px 14px;
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--text-primary);
    background: #f0f2f5;
    outline: none;
    transition: all 0.2s ease;
}

.reply-form-input:focus {
    background: #fff;
    border-color: var(--accent);
}

.reply-form-send {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 14px;
    transition: background 0.15s;
}

.reply-form-send:hover {
    background: var(--accent-dark);
}

/* Pagination */
.comments-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding: 16px 0;
    border-top: 1px solid #eee;
}

.comments-pagination .page-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-sans);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.comments-pagination .page-btn:hover:not(:disabled) {
    background: #f0f0f0;
    border-color: #bbb;
}

.comments-pagination .page-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.comments-pagination .page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.comments-pagination .page-btn.nav-btn {
    font-size: 12px;
    padding: 0 12px;
    color: #555;
}

.comments-pagination .page-ellipsis {
    padding: 0 4px;
    color: #999;
    font-size: 14px;
}

/* User comment highlight */
.comment.user-comment .comment-bubble {
    background: #fce4ec;
}

.comment.user-comment .comment-author::after {
    content: ' (Voc\00ea)';
    font-weight: 400;
    color: var(--accent);
    font-size: 11px;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 15, 20, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 16px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.floating-cta.visible {
    transform: translateY(0);
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--green), #2ecc71);
    color: #fff;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
    max-width: 500px;
    margin: 0 auto;
}

.floating-cta-btn:hover {
    color: #fff;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.5);
    padding: 0;
    margin-top: 0;
    font-family: var(--font-sans);
}

.footer-top {
    display: flex;
    gap: 60px;
    padding: 48px 0 36px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
}

.footer-brand-section {
    flex: 0 0 220px;
}

.footer-logo {
    font-family: var(--font-sans);
    font-size: 26px;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-logo strong {
    font-weight: 800;
    color: var(--accent);
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}

.footer-sections {
    flex: 1;
    display: flex;
    gap: 32px;
    justify-content: space-between;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col-group {
    display: flex;
    flex-direction: column;
}

.footer-col-group h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    text-align: center;
}

.footer-col-pair {
    display: flex;
    gap: 32px;
}

.footer-col h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.footer-col a,
.footer-col span {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-disclaimer {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 10px;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* Product Links */
.product-link {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(192, 57, 43, 0.2);
    font-weight: inherit;
    transition: all 0.2s;
}

.product-link:hover {
    color: var(--accent-dark);
    border-bottom-color: var(--accent);
}

/* ===== SELECTION ===== */
::selection {
    background: var(--accent);
    color: #fff;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .ticker-track {
        animation-duration: 20s;
    }

    .top-bar {
        padding: 5px 0;
    }

    .top-bar-inner {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0;
        padding: 0 12px;
    }

    .top-bar-left {
        gap: 6px;
        font-size: 10px;
    }

    .top-bar-date, .top-bar-sep {
        display: none;
    }

    .top-bar-weather {
        font-size: 10px;
    }

    .top-bar-weather {
        font-size: 10px;
    }

    .advertorial-label {
        font-size: 8px;
        padding: 2px 8px;
        letter-spacing: 2px;
    }

    .header-inner {
        height: 52px;
    }

    .header-logo {
        font-size: 22px;
    }

    .header-nav {
        display: none;
    }

    .header-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-auth {
        display: none;
    }

    .mobile-nav {
        display: flex;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
    }

    .mobile-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .breaking-label {
        font-size: 9px;
        padding: 0 10px;
        letter-spacing: 1px;
    }

    .breaking-bar {
        height: 32px;
    }

    .ticker-item {
        font-size: 11px;
    }

    .container {
        padding: 0 16px;
    }

    .main {
        padding: 0;
    }

    .article-container {
        border-radius: 0;
        border-left: none;
        border-right: none;
        padding: 24px 16px;
        box-shadow: none;
    }

    .breadcrumb {
        display: none;
    }

    .category-tag {
        font-size: 11px;
    }

    .article-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .article-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }

    .article-body {
        font-size: 15px;
    }

    .article-body p.lead {
        font-size: 16px;
    }

    .share-buttons {
        display: none;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-hero {
        margin: 0;
        border-radius: 0;
    }

    .article-hero img {
        border-radius: 0;
    }

    .article-image {
        margin-left: -16px;
        margin-right: -16px;
        border-radius: 0;
    }

    .article-image img {
        border-radius: 0;
    }

    .features-box ul {
        grid-template-columns: 1fr;
    }

    .features-box li {
        border-right: none;
    }

    blockquote {
        padding: 18px 20px;
        margin: 24px 0;
    }

    .defect-info-box {
        padding: 20px 16px;
    }

    .cta-button,
    .cta-button-clean {
        padding: 16px 24px;
        font-size: 15px;
        display: block;
        text-align: center;
    }

    .cta-section {
        padding: 28px 20px;
        margin: 30px -16px;
        border-radius: 0;
    }

    .cta-section-clean {
        margin: 30px 0;
    }

    .highlight-box {
        flex-direction: column;
        gap: 12px;
    }

    /* Related articles */
    .related-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .related-card {
        display: flex;
        gap: 0;
    }

    .related-card-img {
        width: 120px;
        flex-shrink: 0;
        aspect-ratio: 1;
    }

    .related-card-content {
        padding: 10px 14px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .related-card-content h4 {
        font-size: 13px;
    }

    /* Comments */
    .comment {
        padding: 0;
        gap: 8px;
    }

    .comment-avatar-img {
        width: 36px;
        height: 36px;
    }

    .comment-image {
        max-width: 260px;
    }

    .comment-bubble {
        border-radius: 14px;
        padding: 8px 12px;
    }

    .comment-replies {
        margin-left: 24px;
    }

    .reply-form {
        margin-left: 24px;
    }

    .comment-form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .comment-form-submit {
        text-align: center;
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        gap: 28px;
        padding: 32px 0 24px;
    }

    .footer-brand-section {
        flex: auto;
        text-align: center;
    }

    .footer-sections {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .footer-col {
        align-items: center;
        text-align: center;
    }

    body {
        padding-bottom: 0;
        overflow-x: hidden;
    }

    /* Prevent horizontal overflow on mobile */
    .main, .article-container, .article-body {
        overflow-x: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 20px;
    }

    .article-container {
        padding: 20px 14px;
    }

    .cta-button,
    .cta-button-clean {
        padding: 14px 16px;
        font-size: 14px;
    }

    .cta-urgency {
        font-size: 11px;
    }

    .comment-form-box {
        padding: 12px 14px;
    }

    .registration-modal {
        padding: 24px 20px;
    }

    .comments-pagination {
        gap: 4px;
        padding: 12px 0;
    }

    .comments-pagination .page-btn {
        min-width: 34px;
        height: 34px;
        font-size: 13px;
        padding: 0 6px;
    }

    .comments-pagination .page-btn.nav-btn {
        min-width: 34px;
        padding: 0 8px;
    }

    .comments-pagination .page-btn.nav-btn .nav-text {
        display: none;
    }
}

/* ===== PLACEHOLDER IMAGES ===== */
.article-hero img[src="img/hero.png"],
.article-image img[src="img/warehouse.png"],
.article-image img[src="img/lifestyle.png"],
.article-image img[src="img/detail.png"] {
    background: linear-gradient(135deg, #f5f5f5 0%, #eee 50%, #f0f0f0 100%);
    min-height: 300px;
}

/* ===== FULL-PAGE MENU ===== */
.fp-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.fp-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}
.fp-menu-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 340px;
    max-width: 90vw;
    background: #0d0f14;
    color: #fff;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    padding: 0 0 24px;
}
.fp-menu-overlay.open .fp-menu-panel {
    transform: translateX(0);
}
.fp-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fp-menu-logo {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
}
.fp-menu-logo strong {
    font-weight: 800;
    color: var(--accent);
}
.fp-menu-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}
.fp-menu-close:hover {
    color: #fff;
}
.fp-menu-section {
    padding: 16px 20px 8px;
}
.fp-menu-label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 12px;
}
.fp-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
.fp-menu-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 4px;
    border-radius: 8px;
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    transition: background 0.2s;
}
.fp-menu-grid-item:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}
.fp-menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.fp-menu-icon svg {
    width: 20px;
    height: 20px;
}
.fp-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.fp-menu-link {
    display: block;
    padding: 10px 12px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    line-height: 1.4;
}
.fp-menu-link:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}
.fp-menu-link-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 6px;
}
.fp-menu-footer {
    padding: 20px;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 11px;
    color: rgba(255,255,255,0.2);
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 12px;
}

/* ===== SECTION PAGES ===== */
.section-page-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--accent);
}
.section-page-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-page-icon svg {
    width: 28px;
    height: 28px;
}
.section-page-title {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}
.section-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.section-news-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, transform 0.2s;
}
.section-news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.section-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    background-color: #e8e8e8;
}
.section-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}
.placeholder-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.placeholder-icon svg {
    width: 36px;
    height: 36px;
    opacity: 0.5;
}
.section-card-body {
    padding: 14px 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.section-card-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    border-left: 2px solid var(--accent);
    padding-left: 6px;
    margin-bottom: 6px;
}
.section-card-title {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 8px;
    flex: 1;
}
.section-card-meta {
    font-family: var(--font-sans);
    font-size: 11px;
    color: var(--text-muted);
    margin-top: auto;
}
.section-card-meta strong {
    color: #8b0000;
}

/* Error page */
.error-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}
.error-icon {
    margin-bottom: 20px;
    opacity: 0.4;
    display: flex;
    align-items: center;
    justify-content: center;
}
.error-title {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.error-text {
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text-muted);
    max-width: 400px;
    line-height: 1.6;
    margin-bottom: 24px;
}
.error-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}
.error-btn:hover {
    background: var(--accent-dark);
    color: #fff;
}

@media (max-width: 768px) {
    .section-news-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .section-news-card {
        flex-direction: row;
    }
    .section-card-img {
        width: 120px;
        aspect-ratio: 1;
        flex-shrink: 0;
    }
    .section-card-body {
        padding: 10px 12px;
    }
    .section-card-title {
        font-size: 13px;
    }
    .section-page-title {
        font-size: 20px;
    }
    .fp-menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
