/* ========================================================
   GLOBAL VARIABLES
======================================================== */
:root {
    --joy-yellow: #FFD700;
    --joy-dark: #1a1a1a;
    --joy-blue: #2563eb;
    --bg-gray: #f8fafc;
    --text-dark: #334155;
    --white: #ffffff;
    --footer-bg: #111827;
}

/* ========================================================
   RESET & BASE STYLES
======================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-gray);
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}


/* ========================================================
   MAIN LAYOUT
======================================================== */
.main-container {
    display: flex;
    max-width: 1250px;
    margin: -50px auto 40px;
    padding: 0 20px;
    gap: 30px;
    align-items: flex-start;
    flex: 1;
}

/* Post Container */
.post-container {
    flex: 2;
    background: white;
    padding: 30px;
    border-radius: 15px;
}

/* Sidebar */
.sidebar {
    flex: 1;
    min-width: 320px;
    position: sticky;
    top: 100px;
}

/* ========================================================
   POST CONTENT
======================================================== */
.category-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--joy-blue);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    z-index: 5;
}
.post-title {
    font-family: 'Poppins';
    font-size: 3rem;
    line-height: 1.2;
    color: var(--joy-dark);
    margin-bottom: 25px;
}
.featured-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: block;
}
.post-meta-bottom {
    margin-top: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    gap: 20px;
    color: #64748b;
    font-size: 0.95rem;
    align-items: center;
}
.post-meta-bottom i { color: var(--joy-blue); margin-right: 5px; }
.content-area {
    font-size: 1.15rem;
    line-height: 2;
    color: #1e293b;
    margin-top: 40px;
}
.content-area h2 {
    font-family: 'Poppins';
    font-size: 2rem;
    margin: 50px 0 20px;
    color: var(--joy-dark);
    border-left: 6px solid var(--joy-yellow);
    padding-left: 20px;
}
.content-area h3 {
    font-family: 'Poppins';
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--joy-blue);
}
.content-area p, .content-area ul { margin-bottom: 30px; }
.content-area li { margin-bottom: 10px; }

/* CTA Section */
.cta-section {
    background: var(--joy-dark);
    color: white;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
}
.cta-section a {
    background: var(--joy-yellow);
    color: var(--joy-dark);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    transition: 0.3s;
}
.cta-section a:hover { opacity: 0.9; }

/* Social Share Buttons */
.social-share {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.social-share a {
    text-decoration: none;
    font-size: 20px;
    color: var(--joy-dark);
    transition: 0.3s;
}
.social-share a:hover { color: var(--joy-yellow); }

