@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..800;1,400..800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
:root {
    --bg: #090d16;
    --text: #f1f5f9;
    --surface: #111827;
    --border: #1f2937;
    --muted: #94a3b8;
    --primary: #ef4444;
    --primary-dark: #991b1b;
    --primary-light: #fee2e2;
    --accent: #f87171;
    --hero-gradient: linear-gradient(135deg, #1e1b4b 0%, #7f1d1d 50%, #ef4444 100%);
    --heading-color: #ffffff;
    --accent-color: var(--primary-light);
    --logo-color: var(--primary-light);
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Plus Jakarta Sans', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
}
a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

header {
    
            background: rgba(9, 13, 22, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
        
}
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; }
.logo-wrap { display: flex; align-items: center; gap: 8px; }
.logo-img { height: 38px; width: auto; object-fit: contain; }
.logo-text {
    font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 800; letter-spacing: -0.5px;
    color: var(--logo-color);
}
nav ul { list-style: none; display: flex; gap: 8px; }
nav a {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 12px;
    border: 1px solid transparent;
    border-radius: 6px;
}
nav a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.hero {
    padding: 70px 0;
    background: var(--hero-gradient);
    color: #ffffff;
    text-align: center;
    border-radius: 16px;
    margin: 20px auto;
    max-width: 1140px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}
.hero h1 { font-family: 'Playfair Display', serif; font-size: 2.75rem; font-weight: 800; margin-bottom: 12px; color: #ffffff; }
.hero p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; margin: 0 auto 20px; color: #ffffff; }
.btn-hero {
    display: inline-block;
    background: #ffffff;
    color: #991b1b;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border: none;
}
.btn-hero:hover { background: #fee2e2; color: #991b1b; transform: translateY(-1px); }

main { padding: 40px 0; }
.section-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; text-transform: uppercase; color: var(--heading-color); }
.section-sub { color: var(--muted); margin-bottom: 20px; font-size: 0.9rem; }
.section-divider { width: 45px; height: 4px; background: var(--primary); margin-bottom: 25px; border-radius: 2px; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.card {
    
            border: 1px solid var(--border);
            border-radius: 6px;
            background: var(--surface);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.card:hover {
    
            border-color: var(--primary);
            box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
            transform: translateY(-2px);
        
}
.card-thumb { aspect-ratio: 16/9; background: #f1f5f9; overflow: hidden; position: relative; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.card:hover .card-thumb img { transform: scale(1.05); }
.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-category { font-family: 'Playfair Display', serif; font-size: 0.7rem; font-weight: 700; color: var(--accent-color); text-transform: uppercase; margin-bottom: 8px; }
.card-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; line-height: 1.4; margin-bottom: 12px; }
.card-desc { font-size: 0.85rem; color: var(--muted); margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-footer { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); font-size: 0.75rem; color: var(--muted); display: flex; gap: 8px; }

.article-wrap { background: var(--surface); border: 1px solid var(--border); padding: 35px; max-width: 820px; margin: 0 auto; border-radius: 12px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.breadcrumb { font-size: 0.8rem; color: var(--muted); margin-bottom: 15px; }
.article-title { font-family: 'Playfair Display', serif; font-size: 2.1rem; font-weight: 800; line-height: 1.3; margin-bottom: 15px; color: var(--heading-color); }
.article-meta { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; color: var(--muted); margin-bottom: 25px; border-bottom: 1px solid var(--border); padding-bottom: 15px; }
.meta-author-img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.sapo { font-size: 1.05rem; font-weight: 500; color: #111827 !important; background: var(--primary-light); border-left: 4px solid var(--primary); padding: 15px; margin-bottom: 25px; border-radius: 0 8px 8px 0; }
.toc { background: var(--bg); border: 1px solid var(--border); padding: 15px; margin: 25px 0; border-radius: 8px; }
.toc-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; text-transform: uppercase; color: var(--heading-color); }
.toc ol { padding-left: 18px; }
.toc li { margin: 4px 0; font-size: 0.85rem; }

.article-content h2 { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; margin: 35px 0 15px; color: var(--heading-color); border-bottom: 1px solid var(--border); padding-bottom: 6px; }
.article-content h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin: 25px 0 10px; }
.article-content p { margin-bottom: 16px; font-size: 0.95rem; color: var(--text); opacity: 0.9; }
.article-content ul, .article-content ol { margin: 15px 0 15px 20px; }
.article-content li { margin: 6px 0; font-size: 0.95rem; }
.article-content a {
    color: var(--primary-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    background-color: var(--primary-light);
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.article-content a:hover {
    background-color: var(--primary);
    color: #ffffff;
    text-decoration: none;
}
.article-img { width: 100%; height: auto; border-radius: 8px; margin: 25px 0; }
.silo-link { margin: 20px 0; padding: 12px 16px; background-color: var(--primary-light); border-left: 4px solid var(--primary); border-radius: 0 6px 6px 0; font-size: 0.95rem; color: #111827 !important; }
.silo-link a { color: var(--primary-dark) !important; font-weight: 600; text-decoration: underline; }
.silo-link a:hover { color: var(--primary) !important; }
.warning-box { color: #111827 !important; }

.author-box { margin-top: 40px; padding: 20px; background: var(--bg); border: 1px solid var(--border); display: flex; gap: 16px; border-radius: 8px; }
.author-box img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.author-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; }
.author-title { font-size: 0.8rem; color: var(--accent-color); font-weight: 600; margin-bottom: 6px; }
.author-bio { font-size: 0.85rem; color: var(--muted); }

.related { margin-top: 40px; padding-top: 25px; border-top: 1px solid var(--border); }
.related h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 15px; }
.related ul { list-style: none; }
.related li { padding: 8px 0; border-bottom: 1px dotted var(--border); display: flex; align-items: center; gap: 6px; }
.related a { font-weight: 600; font-size: 0.9rem; }
.related a:hover { color: var(--primary); }

.legal-wrap { background: var(--surface); border: 1px solid var(--border); padding: 35px; max-width: 820px; margin: 0 auto; border-radius: 12px; }
.legal-wrap h1 { font-family: 'Playfair Display', serif; font-size: 2.1rem; font-weight: 800; margin-bottom: 20px; border-bottom: 2px solid var(--primary); padding-bottom: 10px; color: var(--heading-color); }
.legal-wrap h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin: 25px 0 10px; }
.legal-wrap p { margin-bottom: 16px; font-size: 0.95rem; }

footer { background: #0f172a; color: #94a3b8; padding: 45px 0 20px; margin-top: 60px; border-top: 4px solid var(--primary); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.footer-brand p { margin-top: 10px; font-size: 0.8rem; }
.footer-logo, .footer-logo-img { height: 32px; width: auto; object-fit: contain; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1.10rem; font-weight: 700; color: #ffffff; }
.footer-col .footer-col-title { display: block; color: #ffffff; font-weight: 700; margin-bottom: 12px; font-size: 0.85rem; text-transform: uppercase; font-family: 'Playfair Display', serif; }
.footer-col ul { list-style: none; }
.footer-col li { margin: 6px 0; }
.footer-col a { color: #94a3b8; font-size: 0.8rem; }
.footer-col a:hover { color: #ffffff; text-decoration: underline; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 15px; text-align: center; font-size: 0.75rem; color: #64748b; }

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border: 1px solid var(--border);
}
.data-table th {
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 12px;
    border-bottom: 2px solid var(--border);
    text-align: left;
}
.data-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
}

@media(max-width: 768px) {
    .grid { grid-template-columns: 1fr; }
    .article-wrap, .legal-wrap { padding: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .hero h1 { font-size: 2rem; }
}

/* Custom Magazine Styles */
.top-ad-banner {
    margin: 15px auto;
    text-align: center;
}
.ad-placeholder {
    background: var(--surface);
    border: 1px dashed var(--border);
    color: var(--muted);
    padding: 20px;
    font-size: 0.85rem;
    border-radius: 4px;
    display: inline-block;
    width: 100%;
    max-width: 970px;
}
.ad-placeholder span {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--heading-color);
}

.top-bar {
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    font-size: 0.8rem;
    color: var(--muted);
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.social-links {
    display: flex;
    gap: 12px;
}
.social-icon {
    font-weight: bold;
    color: var(--muted);
    display: flex;
    align-items: center;
}
.social-icon:hover {
    color: var(--primary);
}
.top-bar-tagline {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}
.search-form {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 4px;
    padding: 2px 6px;
}
.search-form input {
    border: none;
    background: transparent;
    font-size: 0.75rem;
    outline: none;
    color: var(--text);
    padding: 2px;
    width: 120px;
}
.search-form button {
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--muted);
}

.logo-row {
    padding: 25px 0;
    text-align: center;
}
.logo-row .logo-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.logo-row .logo-img {
    height: 50px;
}
.logo-row .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--logo-color);
}

.nav-row {
    background: var(--primary);
    border-radius: 4px;
    margin-bottom: 30px;
}
.nav-row-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-row nav ul {
    list-style: none;
    display: flex;
}
.nav-row nav a {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 15px 20px;
    display: block;
    font-family: 'Playfair Display', serif;
}
.nav-row nav a:hover {
    background: var(--primary-dark);
}
.nav-btn-purchase {
    background: #000000;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 15px 25px;
    display: block;
    font-family: 'Playfair Display', serif;
}
.nav-btn-purchase:hover {
    background: #111111;
}

.magazine-hero-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 320px 240px;
    gap: 20px;
    margin-bottom: 50px;
}
.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: #000000;
}
.hero-card-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.hero-card-img-wrap {
    width: 100%;
    height: 100%;
}
.hero-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.hero-card:hover .hero-card-img-wrap img {
    transform: scale(1.03);
    opacity: 0.65;
}
.hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #ffffff;
}
.hero-card-category {
    background: var(--primary);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}
.hero-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 6px;
    color: #ffffff;
}
.hero-card-meta {
    font-size: 0.75rem;
    opacity: 0.8;
}

.hero-card-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}
.hero-card-1 .hero-card-title {
    font-size: 1.8rem;
}
.hero-card-2 {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
}
.hero-card-3 {
    grid-column: 3 / 5;
    grid-row: 2 / 3;
}
.hero-card-4 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}
.hero-card-5 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.magazine-split-section {
    display: grid;
    grid-template-columns: 2.7fr 1.3fr;
    gap: 40px;
    margin-bottom: 60px;
}
.magazine-sec-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    color: var(--heading-color);
}
.magazine-sec-sub {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
}
.magazine-sec-divider {
    height: 4px;
    width: 60px;
    background: var(--primary);
    margin-bottom: 25px;
    border-radius: 2px;
}

.picks-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.pick-main-card {
    display: flex;
    flex-direction: column;
}
.pick-main-img-wrap {
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 15px;
    display: block;
}
.pick-main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.pick-main-card:hover .pick-main-img-wrap img {
    transform: scale(1.02);
}
.pick-category {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
}
.pick-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 10px;
}
.pick-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 15px;
}
.pick-meta {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: auto;
}

.picks-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.pick-list-item {
    display: flex;
    gap: 15px;
}
.pick-list-thumb {
    width: 110px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
    display: block;
}
.pick-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pick-list-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pick-list-category {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 4px;
    font-family: 'Playfair Display', serif;
}
.pick-list-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 6px;
}
.pick-list-meta {
    font-size: 0.7rem;
    color: var(--muted);
}

.spotlight-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.spotlight-item {
    display: flex;
    flex-direction: column;
}
.spotlight-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 12px;
    display: block;
}
.spotlight-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.spotlight-category {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 4px;
    font-family: 'Playfair Display', serif;
}
.spotlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 6px;
}
.spotlight-meta {
    font-size: 0.7rem;
    color: var(--muted);
}

.magazine-cat-section {
    margin-top: 50px;
    border-top: 1px solid var(--border);
    padding-top: 40px;
}
.magazine-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.magazine-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.magazine-card-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.magazine-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.magazine-card-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.magazine-card-category {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
}
.magazine-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 8px;
}
.magazine-card-desc {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 12px;
}
.magazine-card-footer {
    margin-top: auto;
    border-top: 1px solid var(--border);
    padding-top: 10px;
    font-size: 0.75rem;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
}

@media (max-width: 992px) {
    .magazine-split-section {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    header {
        position: static !important;
    }
    .nav-row-inner {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }
    .nav-row nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-row nav a {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    .nav-btn-purchase {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
    .top-bar-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .magazine-hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .hero-card {
        grid-column: auto !important;
        grid-row: auto !important;
        aspect-ratio: 16/10;
    }
    .picks-container {
        grid-template-columns: 1fr;
    }
    .magazine-grid-3 {
        grid-template-columns: 1fr;
    }
}
