/* style_lite.css - Final Master Polish */
:root {
    --bg-body: #000000;      /* True Pitch Black */
    --bg-card: #0e0e11;      /* Deepest Charcoal */
    --text-main: #ffffff;    /* Pure White for Title */
    --text-body: #d4d4d8;    /* Soft Grey for reading */
    --text-muted: #71717a;   /* Dark Grey for meta */
    --primary: #2dd4bf;      /* Teal */
    --primary-glow: rgba(45, 212, 191, 0.2);
    --font-head: 'Merriweather', serif;
    --font-body: 'Outfit', sans-serif;
    --border-card: 1px solid rgba(255, 255, 255, 0.06);
    --shadow-card: 0 40px 80px -20px rgba(0,0,0,1), 0 0 0 1px rgba(255,255,255,0.02);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-image: radial-gradient(circle at top, #18181b 0%, #000000 70%);
}

/* --- THE CARD CONTAINER --- */
.premium-card {
    background: var(--bg-card);
    width: 100%;
    max-width: 680px; 
    border-radius: 24px;
    overflow: hidden;
    border: var(--border-card);
    box-shadow: var(--shadow-card);
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- 1. VISUAL AREA --- */
.card-visual {
    position: relative;
    height: 350px; 
    width: 100%;
    overflow: hidden;
    border-bottom: var(--border-card);
}

.hero-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}
.premium-card:hover .hero-img { transform: scale(1.08); }

.watermark {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    padding: 8px 16px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.watermark span { color: var(--primary); }

/* --- 2. CONTENT AREA --- */
.card-content {
    padding: 35px;
}
.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.category-pill {
    background: rgba(45, 212, 191, 0.1);
    color: var(--primary);
    border: 1px solid rgba(45, 212, 191, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
}
.category-pill:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 15px var(--primary-glow);
}

.date {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Title */
h1.card-title {
    font-family: var(--font-head);
    font-weight: 800; /* Extra Bold */
    font-size: 2.2rem; /* Larger Title */
    line-height: 1.3;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

/* Summary Text (Enhanced Readability) */
.card-text {
    font-size: 1.5rem; /* Big text */
    line-height: 1.8;  /* Relaxed spacing */
    color: var(--text-body);
    margin-bottom: 35px;
    font-weight: 400;
}

/* Highlights */
strong { color: var(--primary); font-weight: 600; }
strong.highlight {
    background: var(--primary-glow);
    color: #5eead4;
    padding: 2px 6px;
    border-radius: 4px;
}

/* --- COMPACT ACTION BUTTON --- */
.action-area {
    display: flex;
    justify-content: center; /* Centered */
    margin: 10px 0 40px;
}

.btn-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #115e59 100%);
    color: #000; /* Dark text for max contrast on teal */
    font-weight: 800;
    font-family: var(--font-body);
    font-size: 1.05rem;
    padding: 15px 45px; /* Wider pill shape */
    border-radius: 100px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px -10px rgba(45, 212, 191, 0.5);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy feel */
    position: relative;
    overflow: hidden;
}

/* Subtle shine effect overlay */
.btn-compact::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.2s;
}

.btn-compact:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px -12px rgba(45, 212, 191, 0.8);
}
.btn-compact:hover::after { opacity: 1; }

.btn-compact:active { transform: scale(0.95); }

.btn-compact svg { 
    width: 20px; height: 20px; 
    transition: transform 0.2s;
}
.btn-compact:hover svg { transform: translateX(3px); }


/* --- REDESIGNED FOOTER / RELATED --- */
.divider {
    height: 1px;
    background: linear-gradient(to right, #27272a, transparent);
    margin-bottom: 30px;
}

.related-area { display: flex; flex-direction: column; gap: 15px; }

.related-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.related-list { display: flex; flex-direction: column; gap: 10px; }

.related-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    background: rgba(255,255,255,0.03);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.related-item:hover {
    background: rgba(45, 212, 191, 0.05);
    border-color: rgba(45, 212, 191, 0.2);
    transform: translateX(5px);
}

.rel-info { display: flex; flex-direction: column; gap: 4px; }

.rel-cat {
    font-size: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.rel-title {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.05rem;
}

.rel-arrow {
    color: #52525b;
    font-size: 1.2rem;
    transition: color 0.2s;
}
.related-item:hover .rel-arrow { color: var(--primary); }


/* Mobile Tweaks */
@media (max-width: 600px) {
    body { padding: 0; background: var(--bg-card); align-items: flex-start; }
    .premium-card { border-radius: 0; border: none; box-shadow: none; max-width: 100%; }
    .card-visual { height: 280px; }
    .card-content { padding: 25px 20px; }
    h1.card-title { font-size: 1.85rem; }
    .card-text { font-size: 1.35rem; }
    .meta-row { margin-bottom: 20px; }
    .action-area { justify-content: stretch; }
    .btn-compact { width: 100%; justify-content: center; }
}

@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
