/* =========================
   GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&display=swap');

/* =========================
   VARIABLES
========================= */
:root {
    --primary-gold: #ffc107;
    --dark-bg: #0f0f0f;
    --light-bg: #f8f9fa;
    --glass-bg-dark: rgba(255, 255, 255, 0.05);
    --glass-bg-light: rgba(0, 0, 0, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
}

/* =========================
   GLOBAL
========================= */
body {
    font-family: 'Poppins', sans-serif;
    background: var(--light-bg);
    color: #212529;
    transition: all 0.4s ease;
}

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

a {
    color: #212529;
    text-decoration: none;
}

a:hover {
    color: var(--primary-gold);
}

/* =========================
   HEADER
========================= */
.blog-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #eee;
    min-height: 80px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.blog-header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-wrapper {
    display: flex;
    flex-direction: column;
}

.brand-text {
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.7rem;
    color: #888;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Header Buttons */
.header-btn {
    border-radius: 10px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline-warning.header-btn {
    border-width: 2px;
}

.btn-outline-warning.header-btn:hover {
    background: var(--primary-gold);
    color: #000;
}

/* Auth Buttons */
.auth-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.login-btn {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ff9800 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
    color: #000;
}

.register-btn {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.register-btn:hover {
    background: var(--primary-gold);
    color: #000;
    transform: translateY(-2px);
}

/* Responsive auth buttons */
@media (max-width: 576px) {
    .auth-btn {
        padding: 8px 12px;
    }

    .login-btn span {
        display: none;
    }
}

/* Dark mode auth buttons */
.dark-mode .login-btn {
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.dark-mode .register-btn {
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

/* User Menu (Logged In) */
.user-greeting {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 25px;
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.user-greeting i {
    font-size: 1rem;
}

.user-greeting strong {
    color: var(--primary-gold);
    font-weight: 700;
}

.dark-mode .user-greeting {
    background: rgba(255, 193, 7, 0.15);
}

.logout-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: #fff !important;
    border: none;
}

.logout-btn:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    color: #fff;
}

.dashboard-btn {
    background: linear-gradient(135deg, #1a1a2e, #2d2d44);
    color: var(--primary-gold) !important;
    border: none;
}

.dashboard-btn:hover {
    background: linear-gradient(135deg, #2d2d44, #3d3d54);
    color: var(--primary-gold);
}

/* LOGO */
.site-logo {
    height: 48px;
    width: 48px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 10px;
}

/* =========================
   NAVBAR - UNIFORM ACROSS ALL LAYOUTS
========================= */
.nav-scroller {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

/* Hide scrollbar but keep functionality */
.nav-scroller::-webkit-scrollbar {
    display: none;
}

.nav-scroller {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.nav-scroller nav {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    width: max-content;
    min-width: 100%;
}

.nav-scroller a,
.nav-scroller a.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    color: #444;
    transition: all 0.25s ease;
    background: transparent;
    flex-shrink: 0;
    text-align: center;
    text-decoration: none;
}

.nav-scroller a:hover,
.nav-scroller a.nav-link:hover {
    background: rgba(255, 193, 7, 0.15);
    color: var(--primary-gold);
}

.nav-scroller a i {
    color: var(--primary-gold);
    font-size: 0.8rem;
}

/* Dark mode navbar */
.dark-mode .nav-scroller {
    background: rgba(30, 30, 40, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dark-mode .nav-scroller a,
.dark-mode .nav-scroller a.nav-link {
    color: #ccc;
}

.dark-mode .nav-scroller a:hover,
.dark-mode .nav-scroller a.nav-link:hover {
    background: rgba(255, 193, 7, 0.2);
    color: var(--primary-gold);
}

/* Laptop/Desktop - spread categories evenly */
@media (min-width: 992px) {
    .nav-scroller nav {
        width: 100%;
        justify-content: space-evenly;
    }

    .nav-scroller a,
    .nav-scroller a.nav-link {
        flex: 1;
        text-align: center;
    }
}

/* =========================
   HERO
========================= */
.hero {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.hero h1 {
    color: var(--primary-gold);
    font-weight: 900;
}

/* =========================
   CARDS
========================= */
.card {
    background: #fff;
    border-radius: 18px;
    transition: 0.3s;
}

.card h3,
.card h4 {
    color: var(--primary-gold);
}

.card:hover {
    transform: translateY(-6px);
}

/* =========================
   SIDEBAR
========================= */
.about-card {
    background: #fff;
    border-radius: 18px;
}

.blog-sidebar {
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

/* =========================
   SECTION TITLE
========================= */
.section-title {
    color: var(--primary-gold);
    font-weight: 800;
    margin: 2rem 0 1rem;
    position: relative;
}

.section-title::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gold);
}

/* =========================
   BUTTONS
========================= */
.btn-warning {
    background: linear-gradient(45deg, #ffc107, #ff9800);
    border: none;
    font-weight: 700;
}

/* =========================
   BLOG DETAIL PAGE
========================= */
.post-content p {
    line-height: 1.85;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

/* Feature image */
.blog-post figure img {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease;
}

.blog-post figure img:hover {
    transform: scale(1.02);
}

/* =========================
   SHARE BAR
========================= */
.share-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 2rem;
}

.share-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #fff;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.share-icon:hover {
    transform: translateY(-4px) scale(1.15);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}

/* =========================
   FOLLOW US ICONS
========================= */
.follow-icon {
    width: 54px;
    height: 54px;
    margin: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #fff;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.follow-icon:hover {
    transform: scale(1.18);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

/* PLATFORM COLORS */
.instagram {
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}

.youtube {
    background: #ff0000;
}

.twitter {
    background: #000000;
}

/* =========================
   CATEGORY HOVER
========================= */
.category-list a {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.category-list a:hover {
    transform: translateX(6px);
    color: var(--primary-gold);
}

/* =========================
   FOOTER (ENHANCED)
========================= */
.blog-footer {
    position: relative;
    background: linear-gradient(135deg, #f1f1f1 0%, #e0e0e0 100%);
    color: #333;
    padding: 3rem 1rem;
    margin-top: 4rem;
    overflow: hidden;
    transition: all 0.4s ease;
}

.footer-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-title {
    font-weight: 900;
    letter-spacing: 2px;
    color: #222;
}

.footer-underline {
    display: block;
    width: 120px;
    height: 3px;
    margin: 8px auto;
    background: var(--primary-gold);
    box-shadow: 0 0 14px rgba(255, 193, 7, 0.8);
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin: 1.5rem 0;
}

.footer-socials a {
    font-size: 1.4rem;
    color: #444;
    transition: 0.3s ease;
}

.footer-socials a:hover {
    color: var(--primary-gold);
    transform: translateY(-4px);
}

.footer-copy {
    font-size: 0.95rem;
    opacity: 0.85;
    color: #555;
}

.footer-copy i {
    color: var(--primary-gold);
}

/* =========================
   DARK MODE
========================= */
.dark-mode {
    background: radial-gradient(circle at top right, #1a1a2e, #0f0f0f);
    color: #fff;
}

.dark-mode a {
    color: #fff;
}

.dark-mode .blog-header {
    background: rgba(15, 15, 15, 0.85);
    border-color: var(--glass-border);
}

.dark-mode .nav-scroller {
    background: var(--glass-bg-dark);
}

.dark-mode .card,
.dark-mode .about-card {
    background: var(--glass-bg-dark);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.dark-mode .blog-sidebar {
    border-color: var(--glass-border);
}

.dark-mode .blog-footer {
    background: radial-gradient(circle at top, #1a1a2e, #0c0c0c);
    color: #fff;
}

.dark-mode .footer-title {
    color: #fff;
}

.dark-mode .footer-socials a {
    color: #fff;
}

.dark-mode .footer-copy {
    color: #ccc;
}

/* Sidebar boxes */
.dark-mode .sidebar-box {
    background: var(--glass-bg-dark);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

/* Search input */
.dark-mode .search-input {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--glass-border);
    color: #fff;
}

.dark-mode .search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Post meta */
.dark-mode .post-meta {
    color: #aaa;
}

/* Post intro */
.dark-mode .post-intro {
    color: #ddd;
}

/* Post content */
.dark-mode .post-content {
    color: #e0e0e0;
}

.dark-mode .post-content p {
    color: #ccc;
}

/* Share box */
.dark-mode .share-box {
    border-top-color: var(--glass-border);
}

.dark-mode .share-label {
    color: #fff;
}

.dark-mode .share:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Category list */
.dark-mode .category-list a {
    color: #ccc;
}

.dark-mode .category-list a:hover {
    color: var(--primary-gold);
}

/* Sidebar title */
.dark-mode .sidebar-title {
    color: #fff;
}

/* Follow row */
.dark-mode .follow-row a {
    color: #ccc;
}

.dark-mode .follow-row a:hover {
    color: var(--primary-gold);
}

/* Card text elements */
.dark-mode .card p,
.dark-mode .card small {
    color: #bbb;
}

.dark-mode .about-card p {
    color: #ccc;
}

.dark-mode .about-card h4 {
    color: var(--primary-gold);
}

/* About card list links */
.dark-mode .about-card a {
    color: #ccc;
}

.dark-mode .about-card a:hover {
    color: var(--primary-gold);
}

/* Buttons */
.dark-mode .btn-outline-secondary {
    border-color: #666;
    color: #ccc;
}

.dark-mode .btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.dark-mode .btn-light {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--glass-border);
    color: #fff;
}

.dark-mode .btn-light:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* =========================
   RESPONSIVE
========================= */

/* Split-screen / Ultra narrow devices (320px and below) */
@media (max-width: 320px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Header - ultra compact */
    .blog-header {
        min-height: 50px;
        padding: 5px 0 !important;
    }

    .site-logo {
        height: 28px;
        width: 28px;
    }

    .brand-text {
        font-size: 0.7rem !important;
        letter-spacing: 0.5px;
    }

    /* Search */
    .header-search .search-input {
        padding: 6px 8px 6px 28px;
        font-size: 0.75rem;
        height: 32px;
        border-radius: 18px 0 0 18px;
    }

    .header-search .search-icon {
        left: 10px;
        font-size: 0.7rem;
    }

    .header-search .search-button {
        padding: 6px 10px;
        height: 32px;
        font-size: 0.7rem;
        border-radius: 0 18px 18px 0;
    }

    .header-search .search-button i {
        font-size: 0.65rem;
    }

    /* Hide "Go!" text on ultra narrow, show only icon */
    .header-search .search-button {
        padding: 6px 8px;
    }



    /* Hero - minimal */
    .hero {
        border-radius: 10px;
    }

    .hero-content {
        padding: 1rem !important;
    }

    .hero h1 {
        font-size: 1.1rem;
    }

    .hero p {
        font-size: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero .btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    /* Section titles */
    .section-title {
        font-size: 0.95rem;
        margin: 1rem 0 0.5rem;
    }

    .section-title::before {
        width: 3px;
        left: -8px;
    }

    /* Cards - stack nicely */
    .card {
        border-radius: 10px;
    }

    .card-body {
        padding: 12px;
    }

    .card h3,
    .card h4 {
        font-size: 0.9rem;
    }

    .card p {
        font-size: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .card small {
        font-size: 0.7rem;
    }

    /* Blog post detail */
    .blog-post h1 {
        font-size: 1.1rem;
    }

    .post-meta {
        font-size: 0.7rem;
    }

    .post-intro {
        font-size: 0.85rem;
    }

    .post-content p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .post-image img {
        max-height: 180px;
        border-radius: 8px;
    }

    /* Share box */
    .share-box {
        gap: 8px;
        padding: 12px 0;
    }

    .share-label {
        font-size: 0.8rem;
    }

    .share {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    /* Sidebar */
    .sidebar-box {
        padding: 12px;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .sidebar-title {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .category-list a {
        font-size: 0.85rem;
    }

    .follow-row {
        gap: 12px;
        font-size: 1.3rem;
    }

    /* Footer */
    .blog-footer {
        padding: 1.5rem 0.75rem;
        margin-top: 1.5rem;
    }

    .footer-title {
        font-size: 0.95rem;
    }

    .footer-underline {
        width: 80px;
        height: 2px;
    }

    .footer-socials {
        gap: 12px;
    }

    .footer-socials a {
        font-size: 1rem;
    }

    .footer-copy {
        font-size: 0.7rem;
    }

    /* Buttons */
    .btn-sm {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }

    .btn-warning {
        font-size: 0.75rem;
    }
}

/* Fluid typography for better split-screen scaling */
@media (max-width: 480px) {
    html {
        font-size: clamp(14px, 3.5vw, 16px);
    }
}

/* Container query support for modern browsers */
@supports (container-type: inline-size) {
    .container {
        container-type: inline-size;
    }

    @container (max-width: 400px) {

        .card h3,
        .card h4 {
            font-size: 0.9rem;
        }

        .card p {
            font-size: 0.8rem;
        }

        .post-meta .dot {
            display: none;
        }
    }
}

/* Extra Small devices (phones, 480px and below) */
@media (max-width: 480px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Header */
    .blog-header {
        min-height: 60px;
        padding: 8px 0 !important;
    }

    .header-row {
        flex-wrap: wrap;
        gap: 10px;
    }

    .site-logo {
        height: 36px;
        width: 36px;
    }

    .brand-text {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    /* Search - full width on mobile */
    .header-search-form {
        width: 100%;
    }

    .header-search {
        width: 100%;
    }

    .header-search .search-input {
        padding: 8px 12px 8px 34px;
        font-size: 0.85rem;
        height: 38px;
        border-radius: 20px 0 0 20px;
    }

    .header-search .search-icon {
        left: 12px;
        font-size: 0.8rem;
    }

    .header-search .search-button {
        padding: 8px 14px;
        height: 38px;
        font-size: 0.8rem;
        border-radius: 0 20px 20px 0;
    }

    .header-search .search-button i {
        font-size: 0.75rem;
    }

    /* Hero */
    .hero {
        border-radius: 15px;
        margin-bottom: 1.5rem !important;
    }

    .hero-content {
        padding: 1.5rem !important;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    /* Section titles */
    .section-title {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.75rem;
    }

    /* Cards */
    .card {
        border-radius: 12px;
    }

    .card h3,
    .card h4 {
        font-size: 1rem;
    }

    .card p {
        font-size: 0.85rem;
    }

    /* Post detail */
    .blog-post h1 {
        font-size: 1.3rem;
    }

    .post-meta {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 4px;
    }

    .post-meta .dot {
        display: none;
    }

    .post-image img {
        border-radius: 10px;
        max-height: 220px;
    }

    .post-intro {
        font-size: 1rem;
    }

    .post-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Share box */
    .share-box {
        flex-wrap: wrap;
        gap: 10px;
    }

    .share {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    /* Sidebar */
    .blog-sidebar {
        border-left: none;
        padding-left: 0;
        margin-top: 2rem;
    }

    .sidebar-box {
        padding: 15px;
        border-radius: 12px;
    }

    /* Footer */
    .blog-footer {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-socials {
        gap: 16px;
    }

    .footer-socials a {
        font-size: 1.2rem;
    }

    .footer-copy {
        font-size: 0.8rem;
    }

    /* Buttons */
    .btn-sm {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* Small devices (landscape phones, tablets portrait, 481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Header */
    .blog-header {
        min-height: 70px;
    }

    .site-logo {
        height: 40px;
        width: 40px;
    }

    .brand-text {
        font-size: 0.95rem;
    }

    /* Search */
    .header-search-form {
        width: 100%;
    }

    .header-search .search-input {
        padding: 9px 14px 9px 36px;
        font-size: 0.85rem;
        height: 40px;
        border-radius: 22px 0 0 22px;
    }

    .header-search .search-icon {
        left: 12px;
        font-size: 0.8rem;
    }

    .header-search .search-button {
        padding: 9px 16px;
        height: 40px;
        font-size: 0.8rem;
        border-radius: 0 22px 22px 0;
    }

    .header-search .search-button i {
        font-size: 0.75rem;
    }



    /* Hero */
    .hero {
        border-radius: 20px;
    }

    .hero-content {
        padding: 2rem !important;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    /* Section titles */
    .section-title {
        font-size: 1.2rem;
    }

    /* Cards */
    .card h3,
    .card h4 {
        font-size: 1.1rem;
    }

    /* Post detail */
    .blog-post h1 {
        font-size: 1.5rem;
    }

    .post-image img {
        max-height: 320px;
    }

    /* Sidebar */
    .blog-sidebar {
        border-left: none;
        padding-left: 0;
        margin-top: 2rem;
    }

    /* Footer */
    .blog-footer {
        padding: 2.5rem 1rem;
    }
}

/* Medium devices (tablets landscape, 769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {

    /* Header */
    .site-logo {
        height: 44px;
        width: 44px;
    }

    .brand-text {
        font-size: 1rem;
    }



    /* Hero */
    .hero h1 {
        font-size: 2rem;
    }

    /* Cards */
    .card h3,
    .card h4 {
        font-size: 1.15rem;
    }

    /* Post detail */
    .blog-post h1 {
        font-size: 1.75rem;
    }

    .post-image img {
        max-height: 400px;
    }

    /* Sidebar */
    .blog-sidebar {
        padding-left: 15px;
    }
}

/* Large devices (desktops, 993px and above) */
@media (min-width: 993px) {
    .container {
        max-width: 1200px;
    }

    /* Hero */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    /* Cards */
    .card {
        border-radius: 18px;
    }

    /* Post detail */
    .blog-post h1 {
        font-size: 2rem;
    }

    .post-image img {
        max-height: 480px;
    }
}

/* Extra large devices (large desktops, 1400px and above) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

/* POST */
.post-meta {
    color: #777;
    font-size: 0.9rem;
}

.post-meta .dot {
    margin: 0 6px;
}

.post-category {
    color: #ffc107;
    font-weight: 600;
}

.post-image {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border-radius: 14px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
}

.post-intro {
    font-size: 1.15rem;
    font-weight: 500;
    color: #333;
}

/* SHARE */
.share-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.share-label {
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    margin-right: 8px;
}

.share {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.share:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* Platform Colors */
.share.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.share.twitter {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

.share.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.share.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0d5cbf 100%);
}

.share.copy-link {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* SIDEBAR */
.sidebar-box {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 20px;
}

.sidebar-title {
    font-weight: 700;
    margin-bottom: 12px;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list a {
    color: #444;
}

.category-list a:hover {
    color: #ffc107;
}

/* SEARCH */
.search-input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

/* HEADER SEARCH */
.header-search {
    position: relative;
    width: 100%;
}

.header-search .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 0.85rem;
    pointer-events: none;
    transition: color 0.3s ease;
    z-index: 2;
}

.header-search-form {
    width: 100%;
}

.header-search {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.header-search .search-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
    border-radius: 25px 0 0 25px;
    padding: 10px 12px 10px 38px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    height: 42px;
}

.header-search .search-input:focus {
    background: #fff;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
    outline: none;
}

/* Search Button */
.header-search .search-button {
    background: linear-gradient(45deg, #ffc107, #ff9800);
    border: none;
    border-radius: 0 25px 25px 0;
    padding: 10px 18px;
    height: 42px;
    color: #000;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.header-search .search-button:hover {
    background: linear-gradient(45deg, #ffca28, #ffa726);
    transform: translateX(2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.header-search .search-button:active {
    transform: scale(0.98);
}

.header-search .search-button i {
    font-size: 0.8rem;
}

.header-search .search-input:focus+.search-icon,
.header-search:focus-within .search-icon {
    color: var(--primary-gold);
}

/* Dark mode header search */
.dark-mode .header-search .search-icon {
    color: rgba(255, 255, 255, 0.5);
}

.dark-mode .header-search .search-input {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.dark-mode .header-search .search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.dark-mode .header-search .search-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-gold);
}

.dark-mode .header-search:focus-within .search-icon {
    color: var(--primary-gold);
}

/* Dark mode search button */
.dark-mode .header-search .search-button {
    background: linear-gradient(45deg, #ffc107, #ff9800);
    color: #000;
}

.dark-mode .header-search .search-button:hover {
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.5);
}

/* Header action buttons gap fallback */
.header-row .gap-2 {
    gap: 0.5rem;
}

/* Fallback for older browsers */
@supports not (gap: 0.5rem) {
    .header-row .gap-2>* {
        margin-left: 0.25rem;
        margin-right: 0.25rem;
    }
}

/* FOLLOW */
.follow-row {
    display: flex;
    justify-content: center;
    gap: 18px;
    font-size: 1.6rem;
}

.follow-row a {
    color: #444;
}

.follow-row a:hover {
    color: #ffc107;
}

/* =========================
   POST CARDS ENHANCED
========================= */
.post-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-gold);
}

.card-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
    background: #000;
}

/* Alternative: Full cover for cards that need it */
.card-img-wrapper.cover-mode img {
    object-fit: cover;
}

.post-card:hover .card-img-wrapper img {
    transform: scale(1.03);
}

.card-img-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    pointer-events: none;
}

.card-title a {
    color: inherit;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: var(--primary-gold);
}

.btn-outline-warning {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-warning:hover {
    background: var(--primary-gold);
    color: #000;
    transform: translateX(5px);
}

/* =========================
   RESULTS COUNT BADGE
========================= */
.results-count {
    color: #666;
    font-size: 0.95rem;
    margin-top: -5px;
}

.results-count .badge {
    font-weight: 700;
    padding: 0.4em 0.8em;
    border-radius: 20px;
}

/* =========================
   NO RESULTS STATE
========================= */
.no-results-box {
    background: var(--glass-bg-light);
    border-radius: 20px;
    padding: 60px 40px;
}

.no-results-icon {
    font-size: 4rem;
    color: #ddd;
}

.no-results-box h4 {
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
}

/* =========================
   SEARCH INLINE FORM
========================= */
.search-form-inline {
    max-width: 600px;
}

.search-form-inline .header-search {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    overflow: hidden;
}

/* =========================
   DARK MODE ENHANCEMENTS
========================= */
.dark-mode .post-card {
    background: var(--glass-bg-dark);
    border: 1px solid var(--glass-border);
}

.dark-mode .post-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.dark-mode .card-title a {
    color: #fff;
}

.dark-mode .card-text {
    color: #bbb;
}

.dark-mode .btn-outline-warning {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.dark-mode .btn-outline-warning:hover {
    background: var(--primary-gold);
    color: #000;
}

.dark-mode .results-count {
    color: #aaa;
}

.dark-mode .no-results-box {
    background: var(--glass-bg-dark);
    border: 1px solid var(--glass-border);
}

.dark-mode .no-results-icon {
    color: #444;
}

.dark-mode .no-results-box h4 {
    color: #fff;
}

.dark-mode .search-form-inline .header-search {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* =========================
   HOME PAGE ENHANCEMENTS
========================= */
.hero {
    background-size: cover;
    background-position: center;
    min-height: 350px;
    display: flex;
    align-items: center;
}

/* About card enhancements */
.about-card {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.about-card h4 {
    color: var(--primary-gold);
    font-weight: 700;
}

.about-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-card ul li:last-child {
    border-bottom: none;
}

.about-card a i {
    width: 24px;
    color: var(--primary-gold);
}

.dark-mode .about-card {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.dark-mode .about-card ul li {
    border-bottom-color: var(--glass-border);
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.5s ease forwards;
}

.row .col-lg-6:nth-child(1) .card {
    animation-delay: 0.1s;
}

.row .col-lg-6:nth-child(2) .card {
    animation-delay: 0.2s;
}

.row .col-lg-6:nth-child(3) .card {
    animation-delay: 0.3s;
}

.row .col-lg-6:nth-child(4) .card {
    animation-delay: 0.4s;
}

.row .col-lg-6:nth-child(5) .card {
    animation-delay: 0.5s;
}

.row .col-lg-6:nth-child(6) .card {
    animation-delay: 0.6s;
}

/* =========================
   UTILITY CLASSES
========================= */
.text-gold {
    color: var(--primary-gold) !important;
}

.bg-gold {
    background: var(--primary-gold) !important;
}

/* =========================
   HORIZONTAL CARDS (Recent Posts)
========================= */
.horizontal-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.horizontal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 193, 7, 0.3);
}

.horizontal-img-wrapper {
    width: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    position: relative;
}

.horizontal-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.horizontal-card:hover .horizontal-img-wrapper::before {
    opacity: 1;
}

.horizontal-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.horizontal-card:hover .horizontal-img-wrapper img {
    transform: scale(1.05);
}

.horizontal-card .card-body {
    padding: 1.5rem;
}

.horizontal-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.horizontal-card .card-title a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.horizontal-card .card-title a:hover {
    color: #ff9800;
}

.horizontal-card .card-text {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Tablet and above - horizontal layout */
@media (min-width: 768px) {
    .horizontal-card {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }

    .horizontal-img-wrapper {
        width: 40%;
        min-width: 280px;
        max-width: 380px;
        flex-shrink: 0;
        border-radius: 18px 0 0 18px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .horizontal-img-wrapper img {
        width: 100%;
        height: auto;
        object-fit: contain;
        max-height: 280px;
    }

    .horizontal-card .card-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
        padding: 1.75rem;
    }
}

/* Large screens */
@media (min-width: 992px) {
    .horizontal-img-wrapper {
        max-width: 420px;
    }

    .horizontal-img-wrapper img {
        max-height: 320px;
    }

    .horizontal-card .card-title {
        font-size: 1.35rem;
    }
}


/* =========================
   HERO SECTION (with actual image)
========================= */
.hero-section {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.3) 100%);
}

.hero-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2rem 2.5rem;
    color: #fff;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
}

.hero-content-overlay h1 {
    color: var(--primary-gold);
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-content-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.5;
}

/* Responsive hero text */
@media (min-width: 768px) {
    .hero-content-overlay {
        padding: 3rem;
    }

    .hero-content-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-content-overlay p {
        font-size: 1.1rem;
    }
}

@media (min-width: 992px) {
    .hero-content-overlay h1 {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-content-overlay {
        padding: 1.5rem;
    }

    .hero-content-overlay h1 {
        font-size: 1.5rem;
    }

    .hero-content-overlay p {
        font-size: 0.9rem;
    }

    .hero-content-overlay .btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

/* Dark mode hero */
.dark-mode .hero-section {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

/* =========================
   BLOG DETAIL PAGE ENHANCED
========================= */

/* Breadcrumb Navigation */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.9rem;
}

.breadcrumb-link {
    color: #666;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--primary-gold);
}

.breadcrumb-separator {
    color: #999;
}

.breadcrumb-current {
    color: var(--primary-gold);
    font-weight: 500;
}

/* Category Badge */
.category-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-gold), #ff9800);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease;
}

.category-badge:hover {
    transform: translateY(-2px);
    color: #000;
}

/* Blog Title */
.blog-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* Meta Bar */
.meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--primary-gold);
}

/* Featured Image */
.featured-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Lead Text */
.lead-text {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.05));
    border-left: 4px solid var(--primary-gold);
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
}

.lead-text p {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

/* Article Content */
.article-content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #333;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2,
.article-content h3 {
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.article-content img {
    border-radius: 12px;
    margin: 1.5rem 0;
}

.article-content blockquote {
    border-left: 4px solid var(--primary-gold);
    padding-left: 20px;
    margin: 1.5rem 0;
    font-style: italic;
    color: #555;
}

/* Article Tags */
.article-tags {
    padding: 15px 0;
    border-top: 1px solid #eee;
}

.tag-label {
    color: #666;
    font-size: 0.9rem;
    margin-right: 10px;
}

.article-tag {
    display: inline-block;
    background: #f5f5f5;
    color: #333;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.article-tag:hover {
    background: var(--primary-gold);
    color: #000;
}

/* Share Section */
.share-section {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 25px;
}

.share-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.share-title i {
    color: var(--primary-gold);
}

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

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.share-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1a1a1a, #333);
}

.share-btn.facebook {
    background: linear-gradient(135deg, #1877F2, #0d5cbf);
}

.share-btn.copy-link {
    background: linear-gradient(135deg, #6c757d, #495057);
}

.share-btn.copy-link.copied {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

/* Author Card */
.author-card {
    display: flex;
    gap: 20px;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 25px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    flex-shrink: 0;
}

.author-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-name {
    font-weight: 700;
    color: #1a1a1a;
    margin: 4px 0 8px;
}

.author-bio {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: #f5f5f5;
    border-radius: 10px;
    color: #333;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--primary-gold);
    color: #000;
}

/* Follow Box */
.follow-box {
    text-align: center;
}

.follow-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
    color: #fff;
}

.social-link.instagram {
    background: radial-gradient(circle at 30% 107%, #feda75, #d62976, #962fbf);
}

.social-link.youtube {
    background: #ff0000;
}

.social-link.twitter {
    background: #000;
}

/* Category List Enhanced */
.category-list li a i {
    color: var(--primary-gold);
    margin-right: 5px;
    font-size: 0.8rem;
}

/* Dark Mode Blog Detail */
.dark-mode .breadcrumb-link {
    color: #aaa;
}

.dark-mode .breadcrumb-separator {
    color: #666;
}

.dark-mode .blog-title {
    color: #fff;
}

.dark-mode .meta-bar {
    border-color: var(--glass-border);
}

.dark-mode .meta-item {
    color: #bbb;
}

.dark-mode .featured-image-wrapper {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.dark-mode .lead-text {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 152, 0, 0.08));
}

.dark-mode .lead-text p {
    color: #ddd;
}

.dark-mode .article-content {
    color: #ccc;
}

.dark-mode .article-content h2,
.dark-mode .article-content h3 {
    color: #fff;
}

.dark-mode .article-tags {
    border-color: var(--glass-border);
}

.dark-mode .article-tag {
    background: var(--glass-bg-dark);
    color: #ccc;
    border: 1px solid var(--glass-border);
}

.dark-mode .share-section {
    background: var(--glass-bg-dark);
    border: 1px solid var(--glass-border);
}

.dark-mode .share-title {
    color: #fff;
}

.dark-mode .author-card {
    background: var(--glass-bg-dark);
    border-color: var(--glass-border);
}

.dark-mode .author-name {
    color: #fff;
}

.dark-mode .author-bio {
    color: #aaa;
}

.dark-mode .action-btn {
    background: var(--glass-bg-dark);
    color: #ccc;
    border: 1px solid var(--glass-border);
}

.dark-mode .follow-text {
    color: #aaa;
}

/* Responsive Blog Detail */
@media (max-width: 768px) {
    .blog-title {
        font-size: 1.6rem;
    }

    .meta-bar {
        gap: 12px;
    }

    .meta-item {
        font-size: 0.8rem;
    }

    .share-btn span {
        display: none;
    }

    .share-btn {
        padding: 12px;
        border-radius: 50%;
    }

    .author-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .blog-title {
        font-size: 1.4rem;
    }

    .lead-text {
        padding: 15px 18px;
    }

    .lead-text p {
        font-size: 1rem;
    }

    .share-section {
        padding: 18px;
    }

    .author-card {
        padding: 18px;
    }
}

/* =========================
   ENHANCED SIDEBAR
========================= */

/* Sticky Sidebar */
.sidebar-sticky {
    position: sticky;
    top: 20px;
}

/* Sidebar Search */
.sidebar-search-wrapper {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.sidebar-search-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-right: none;
    font-size: 0.9rem;
    border-radius: 10px 0 0 10px;
}

.sidebar-search-input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.sidebar-search-btn {
    background: linear-gradient(45deg, var(--primary-gold), #ff9800);
    border: none;
    padding: 12px 18px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-search-btn:hover {
    background: linear-gradient(45deg, #ffca28, #ffa726);
}

/* About Sidebar */
.about-sidebar .about-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* Newsletter Box */
.newsletter-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.05));
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: #fff;
}

.newsletter-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.newsletter-btn {
    display: inline-block;
    background: linear-gradient(135deg, #E4405F, #C13584);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.3);
    color: #fff;
}

/* Dark Mode Sidebar Enhancements */
.dark-mode .sidebar-search-input {
    background: var(--glass-bg-dark);
    border-color: var(--glass-border);
    color: #fff;
}

.dark-mode .sidebar-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.dark-mode .about-sidebar .about-text {
    color: #aaa;
}

.dark-mode .newsletter-box {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), rgba(255, 152, 0, 0.03));
    border-color: rgba(255, 193, 7, 0.2);
}

.dark-mode .newsletter-text {
    color: #aaa;
}

/* Responsive Sidebar */
@media (max-width: 992px) {
    .sidebar-sticky {
        position: static;
    }
}

/* =========================
   ENHANCED FOOTER
========================= */
.blog-footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    color: #fff;
    margin-top: 60px;
}

.footer-container {
    width: 100%;
}

/* Footer Top */
.footer-top {
    padding: 60px 0 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

.footer-brand h4 {
    color: var(--primary-gold);
    font-weight: 800;
    margin: 0;
}

.footer-about {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-links a i {
    font-size: 0.7rem;
    margin-right: 8px;
    color: var(--primary-gold);
}

.footer-connect-text {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Modern Social Icons */
.footer-socials-modern {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.social-icon.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-icon.twitter {
    background: linear-gradient(135deg, #000, #333);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}

.footer-made {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}

.footer-made i {
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Nav Home Link */
.nav-home {
    background: var(--primary-gold);
    color: #000 !important;
    border-radius: 20px;
    padding: 6px 14px !important;
}

.nav-home:hover {
    background: #ffca28;
    color: #000 !important;
}

/* Dark Mode Header */
.dark-mode .blog-header {
    background: rgba(15, 15, 15, 0.95);
    border-bottom-color: var(--glass-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.dark-mode .brand-tagline {
    color: #666;
}

.dark-mode .header-btn.btn-light {
    background: var(--glass-bg-dark);
    border-color: var(--glass-border);
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-top {
        padding: 40px 0 30px;
    }

    .footer-heading {
        margin-bottom: 15px;
    }

    .footer-socials-modern {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-copy,
    .footer-made {
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .brand-text {
        font-size: 0.9rem;
    }

    .site-logo {
        height: 40px;
        width: 40px;
    }
}

/* =========================
   LIGHT MODE FOOTER STYLES
========================= */
/* When NOT in dark mode, make footer lighter */
body:not(.dark-mode) .blog-footer {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
}

body:not(.dark-mode) .footer-brand h4 {
    color: #1a1a1a;
}

body:not(.dark-mode) .footer-about {
    color: #666;
}

body:not(.dark-mode) .footer-heading {
    color: #1a1a1a;
}

body:not(.dark-mode) .footer-links a {
    color: #555;
}

body:not(.dark-mode) .footer-links a:hover {
    color: var(--primary-gold);
}

body:not(.dark-mode) .footer-connect-text {
    color: #666;
}

body:not(.dark-mode) .footer-bottom {
    background: rgba(0, 0, 0, 0.05);
    border-top: 1px solid #ddd;
}

body:not(.dark-mode) .footer-copy,
body:not(.dark-mode) .footer-made {
    color: #666;
}

/* =========================
   AUTH PAGES (Login/Register)
========================= */
.auth-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.auth-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.auth-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    padding: 40px 30px;
    text-align: center;
    color: #fff;
}

.auth-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ff9800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.auth-logo {
    width: 69px;
    height: 69px;
    margin: 0 auto 12px;
}

.auth-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.auth-header h2 {
    color: var(--primary-gold);
    font-weight: 800;
    margin-bottom: 8px;
}

.auth-header p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.auth-form {
    padding: 30px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.auth-form .form-control {
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid #eee;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.auth-form .form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.15);
}

.auth-form .textinput {
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid #eee;
}

.auth-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ff9800 100%);
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.auth-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.auth-submit-btn i {
    margin-right: 8px;
}

.auth-footer {
    text-align: center;
    padding: 20px 30px 30px;
    border-top: 1px solid #eee;
}

.auth-footer p {
    margin: 0;
    color: #666;
}

.auth-link {
    color: var(--primary-gold);
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: #ff9800;
}

/* Dark mode auth */
.dark-mode .auth-card {
    background: rgba(30, 30, 40, 0.95);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.dark-mode .auth-form label {
    color: #ccc;
}

.dark-mode .auth-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--glass-border);
    color: #fff;
}

.dark-mode .auth-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
}

.dark-mode .auth-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.dark-mode .auth-footer {
    border-top-color: var(--glass-border);
}

.dark-mode .auth-footer p {
    color: #aaa;
}

/* Help text in forms */
.auth-form .form-text,
.auth-form .helptext,
.auth-form small {
    color: #888;
    font-size: 0.85rem;
}

.dark-mode .auth-form .form-text,
.dark-mode .auth-form .helptext,
.dark-mode .auth-form small {
    color: #777;
}

/* Password requirements list */
.auth-form ul {
    padding-left: 20px;
    color: #888;
    font-size: 0.85rem;
}

.dark-mode .auth-form ul {
    color: #777;
}

/* Auth Options Row */
.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    cursor: pointer;
}

.remember-me input {
    accent-color: var(--primary-gold);
}

.forgot-link {
    color: var(--primary-gold);
    font-weight: 500;
    transition: color 0.3s;
}

.forgot-link:hover {
    color: #ff9800;
}

/* Terms Checkbox */
.terms-check {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.terms-check label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #666;
    cursor: pointer;
}

.terms-check input {
    accent-color: var(--primary-gold);
    margin-top: 3px;
}

/* Auth Divider */
.auth-divider {
    text-align: center;
    position: relative;
    margin: 25px 30px;
}

.auth-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #eee;
}

.auth-divider span {
    position: relative;
    background: #fff;
    padding: 0 15px;
    color: #888;
    font-size: 0.85rem;
}

/* Social Login Buttons */
.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 30px 25px;
}

.social-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-btn.google {
    background: linear-gradient(135deg, #EA4335, #FBBC05, #34A853, #4285F4);
    background-size: 300% 300%;
}

.social-btn.facebook {
    background: linear-gradient(135deg, #1877F2, #0D65D9);
}

.social-btn.twitter {
    background: linear-gradient(135deg, #000, #333);
}

/* Dark Mode Auth Enhancements */
.dark-mode .remember-me,
.dark-mode .terms-check label {
    color: #aaa;
}

.dark-mode .auth-divider::before {
    background: var(--glass-border);
}

.dark-mode .auth-divider span {
    background: rgba(30, 30, 40, 0.95);
    color: #777;
}

/* =========================
   HERO SLIDESHOW
========================= */
.hero-slideshow {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.slideshow-container {
    position: relative;
    width: 100%;
}

.slide {
    display: none;
    position: relative;
    animation: fadeIn 0.8s ease;
}

.slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Navigation Arrows */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slide-nav:hover {
    background: var(--primary-gold);
    color: #000;
}

.slide-nav.prev {
    left: 20px;
}

.slide-nav.next {
    right: 20px;
}

/* Dots */
.slide-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slide-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-dots .dot:hover,
.slide-dots .dot.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

/* Responsive Slideshow */
@media (max-width: 768px) {
    .slide-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slide-nav.prev {
        left: 10px;
    }

    .slide-nav.next {
        right: 10px;
    }

    .slide-dots .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .slide-nav {
        width: 35px;
        height: 35px;
    }

    .slide-dots {
        bottom: 15px;
    }
}

/* =========================
   ENHANCED HOME PAGE RESPONSIVE LAYOUT
========================= */

/* Better Post Card Layout for All Screens */
.row.home-content-row {
    display: flex;
    flex-wrap: wrap;
}

/* ===== ULTRA WIDE SCREENS (1600px+) ===== */
@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }

    .hero-slideshow {
        border-radius: 30px;
        min-height: 500px;
    }

    .hero-content-overlay h1 {
        font-size: 3.5rem;
    }

    .hero-content-overlay p {
        font-size: 1.2rem;
    }

    .horizontal-card {
        min-height: 200px;
    }

    .horizontal-img-wrapper {
        width: 35%;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

/* ===== LARGE DESKTOP (1200px - 1599px) ===== */
@media (min-width: 1200px) and (max-width: 1599px) {
    .hero-slideshow {
        min-height: 400px;
    }

    .horizontal-img-wrapper {
        width: 38%;
    }
}

/* ===== MEDIUM DESKTOP (992px - 1199px) ===== */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-slideshow {
        min-height: 350px;
    }

    .horizontal-card {
        min-height: 180px;
    }

    .horizontal-img-wrapper {
        width: 35%;
    }
}

/* ===== TABLET LANDSCAPE (769px - 991px) ===== */
@media (min-width: 769px) and (max-width: 991px) {
    .hero-slideshow {
        border-radius: 20px;
        min-height: 300px;
    }

    .hero-content-overlay {
        padding: 1.5rem;
    }

    .hero-content-overlay h1 {
        font-size: 1.8rem;
    }

    .horizontal-card {
        flex-direction: row;
    }

    .horizontal-img-wrapper {
        width: 40%;
    }

    /* Sidebar adjustments */
    .blog-sidebar {
        padding-left: 15px;
    }

    .about-card {
        padding: 1rem;
    }


}

/* ===== TABLET PORTRAIT (576px - 768px) ===== */
@media (min-width: 576px) and (max-width: 768px) {
    .hero-slideshow {
        border-radius: 18px;
        min-height: 280px;
    }

    .hero-content-overlay {
        padding: 1.25rem;
    }

    .hero-content-overlay h1 {
        font-size: 1.5rem;
    }

    .hero-content-overlay p {
        font-size: 0.9rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Recent Posts - Stack cards vertically */
    .horizontal-card {
        flex-direction: column;
    }

    .horizontal-img-wrapper {
        width: 100%;
        max-height: 200px;
    }

    .horizontal-img-wrapper img {
        height: 200px;
        object-fit: cover;
        object-position: center;
    }

    /* Sidebar becomes full width */
    .blog-sidebar {
        border-left: none;
        padding-left: 0;
        margin-top: 2rem;
    }

    .col-lg-8,
    .col-md-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-lg-4,
    .col-md-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Sidebar cards side by side on tablet */
    .blog-sidebar .about-card {
        display: inline-block;
        width: calc(50% - 10px);
        margin-right: 10px;
        vertical-align: top;
    }

    .blog-sidebar .about-card:nth-child(2n) {
        margin-right: 0;
    }


}

/* ===== MOBILE LANDSCAPE (481px - 575px) ===== */
@media (min-width: 481px) and (max-width: 575px) {
    .hero-slideshow {
        border-radius: 15px;
        min-height: 250px;
    }

    .hero-content-overlay {
        padding: 1rem;
    }

    .hero-content-overlay h1 {
        font-size: 1.3rem;
    }

    .hero-content-overlay p {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }

    .hero-content-overlay .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* Cards vertical */
    .horizontal-card {
        flex-direction: column;
    }

    .horizontal-img-wrapper {
        width: 100%;
        max-height: 180px;
    }

    .horizontal-img-wrapper img {
        height: 180px;
        object-fit: cover;
    }

    /* Full width sidebar */
    .blog-sidebar .about-card {
        width: 100%;
        margin-right: 0;
    }


}

/* ===== MOBILE PORTRAIT (320px - 480px) ===== */
@media (max-width: 480px) {
    .hero-slideshow {
        border-radius: 12px;
        margin-bottom: 1.5rem !important;
    }

    .hero-content-overlay {
        padding: 0.8rem 1rem;
    }

    .hero-content-overlay h1 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .hero-content-overlay p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem !important;
        -webkit-line-clamp: 2;
    }

    .hero-content-overlay .badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .hero-content-overlay .btn {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }

    /* Section title compact */
    .section-title {
        font-size: 1rem;
        margin: 1rem 0 0.75rem;
        padding-left: 10px;
    }

    .section-title::before {
        left: -8px;
        width: 3px;
    }

    /* Post cards compact */
    .horizontal-card {
        border-radius: 12px;
        margin-bottom: 1rem !important;
    }

    .horizontal-img-wrapper {
        max-height: 160px;
    }

    .horizontal-img-wrapper img {
        height: 160px;
    }

    .horizontal-card .card-body {
        padding: 0.8rem;
    }

    .horizontal-card .card-title {
        font-size: 0.95rem;
        line-height: 1.3;
    }

    .horizontal-card .post-meta {
        font-size: 0.75rem;
        flex-wrap: wrap;
        gap: 4px;
    }

    .horizontal-card .card-text {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }

    /* Sidebar full width, stacked */
    .about-card {
        padding: 1rem;
        margin-bottom: 0.75rem !important;
        border-radius: 12px;
    }

    .about-card h4 {
        font-size: 0.95rem;
    }

    .about-card p {
        font-size: 0.85rem;
    }

    .about-card ul li a {
        font-size: 0.85rem;
    }
}

/* ===== EXTRA SMALL DEVICES (below 320px) ===== */
@media (max-width: 320px) {
    .hero-slideshow {
        border-radius: 10px;
    }

    .hero-content-overlay {
        padding: 0.6rem 0.8rem;
    }

    .hero-content-overlay h1 {
        font-size: 0.95rem;
    }

    .hero-content-overlay p {
        font-size: 0.75rem;
    }

    .hero-content-overlay .badge {
        font-size: 0.65rem;
    }

    .hero-content-overlay .btn {
        font-size: 0.7rem;
    }

    /* Slideshow controls smaller */
    .slide-nav {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .slide-nav.prev {
        left: 5px;
    }

    .slide-nav.next {
        right: 5px;
    }

    .slide-dots {
        bottom: 10px;
    }

    .slide-dots .dot {
        width: 8px;
        height: 8px;
    }

    /* Cards even more compact */
    .horizontal-img-wrapper {
        max-height: 140px;
    }

    .horizontal-card .card-title {
        font-size: 0.85rem;
    }

    /* Section title */
    .section-title {
        font-size: 0.9rem;
    }
}

/* =========================
   NAVBAR ENHANCEMENTS (Uniform)
========================= */

/* Smooth scrolling nav for all sizes */
.nav-scroller {
    scroll-behavior: smooth;
}

/* Active nav link styling */
.nav-scroller a.active,
.nav-scroller a:focus {
    background: rgba(255, 193, 7, 0.2);
    color: var(--primary-gold);
}

.nav-scroller a {
    position: relative;
}

/* =========================
   SIDEBAR RESPONSIVE ENHANCEMENTS
========================= */

/* Tablet - side by side cards */
@media (min-width: 576px) and (max-width: 768px) {
    .blog-sidebar {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .blog-sidebar .about-card {
        flex: 1 1 calc(50% - 0.5rem);
        margin-bottom: 0 !important;
    }
}

/* Mobile - stacked full width */
@media (max-width: 575px) {
    .blog-sidebar {
        margin-top: 1.5rem;
    }

    .blog-sidebar .about-card {
        margin-bottom: 0.75rem !important;
    }

    .blog-sidebar .about-card:last-child {
        margin-bottom: 0 !important;
    }
}

/* =========================
   RESPONSIVE ROW/COLUMN OVERRIDES FOR HOME
========================= */

/* Force column stacking on tablets */
@media (max-width: 768px) {

    .col-lg-8.col-md-7,
    .col-lg-4.col-md-5 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }

    .blog-sidebar {
        border-left: none;
        padding-left: 0;
    }
}

/* Restore on larger screens */
@media (min-width: 769px) {
    .col-lg-8.col-md-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-lg-4.col-md-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
}

@media (min-width: 992px) {
    .col-lg-8.col-md-7 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-lg-4.col-md-5 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* =========================
   MAGAZINE-STYLE HOMEPAGE
========================= */

/* Featured Hero Carousel */
.featured-hero {
    position: relative;
    height: 65vh;
    min-height: 450px;
    max-height: 650px;
    margin: -1rem -1rem 3rem -1rem;
    overflow: hidden;
    background: #000;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 10s ease;
}

.hero-item.active .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.2) 100%);
}

.hero-text {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gold);
    color: #000;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    color: #fff;
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 1.25rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 0 2rem 0;
}

.hero-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-gold);
    color: #000;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.hero-read-btn:hover {
    background: #ff9800;
    transform: translateX(5px);
    color: #000;
}

.hero-read-btn i {
    transition: transform 0.3s ease;
}

.hero-read-btn:hover i {
    transform: translateX(5px);
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.hero-prev,
.hero-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #000;
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: var(--primary-gold);
    transform: scale(1.2);
}

/* Magazine Container */
.magazine-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    padding: 0;
}

/* Section Header */
.section-header-mag {
    margin-bottom: 2.5rem;
}

.section-header-mag h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header-mag h2 i {
    color: var(--primary-gold);
}

.header-line {
    width: 80px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 2px;
}

/* Posts Magazine Grid */
.posts-magazine {
    display: grid;
    gap: 2.5rem;
}

.mag-post-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
}

.mag-post-card:hover {
    transform: translateX(10px);
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.mag-post-img {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.mag-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mag-post-card:hover .mag-post-img img {
    transform: scale(1.1);
}

.mag-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-gold);
    color: #000;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mag-post-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.mag-post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 1rem;
}

.mag-date,
.mag-author {
    color: #777;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mag-date i,
.mag-author i {
    color: var(--primary-gold);
}

.mag-post-title {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 1rem 0;
}

.mag-post-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mag-post-title a:hover {
    color: var(--primary-gold);
}

.mag-post-excerpt {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.mag-read-more {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.mag-read-more:hover {
    gap: 12px;
    color: #fff;
}

.mag-read-more i {
    transition: transform 0.3s ease;
}

/* No Posts */
.no-posts-mag {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px dashed rgba(255, 193, 7, 0.3);
}

.no-posts-mag i {
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.no-posts-mag h4 {
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.no-posts-mag p {
    color: #888;
    margin: 0;
}

/* Sidebar */
.magazine-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    border-color: rgba(255, 193, 7, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 193, 7, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-title i {
    color: var(--primary-gold);
}

.widget-content p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* Categories Widget */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.75rem;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-list a:hover {
    background: rgba(255, 193, 7, 0.1);
    transform: translateX(5px);
}

.cat-name {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.cat-count {
    background: var(--primary-gold);
    color: #000;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Social Widget */
.social-grid {
    display: grid;
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-icon i {
    font-size: 1.2rem;
}

.ig-icon {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.15), rgba(131, 58, 180, 0.1));
    color: #e1306c;
    border: 1px solid rgba(225, 48, 108, 0.3);
}

.ig-icon:hover {
    background: linear-gradient(135deg, #e1306c, #833ab4);
    color: #fff;
}

.yt-icon {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.yt-icon:hover {
    background: #ff0000;
    color: #fff;
}

.tw-icon {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tw-icon:hover {
    background: #000;
    color: #fff;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.05));
    border-color: rgba(255, 193, 7, 0.25);
}

.newsletter-content {
    text-align: center;
}

.newsletter-content i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.newsletter-content h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.newsletter-content p {
    color: #888;
    font-size: 0.85rem;
    margin: 0 0 1.25rem 0;
}

.newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e1306c, #833ab4);
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
    color: #fff;
}

/* Responsive Magazine Layout */
@media (max-width: 1200px) {
    .magazine-container {
        grid-template-columns: 1fr 300px;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .magazine-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .magazine-sidebar {
        position: static;
    }

    .mag-post-card {
        grid-template-columns: 1fr;
    }

    .mag-post-img {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .featured-hero {
        height: 55vh;
        min-height: 400px;
        margin: -0.5rem -0.5rem 2rem -0.5rem;
    }

    .hero-text {
        padding: 1.5rem;
    }

    .hero-text h1 {
        font-size: 1.85rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .hero-nav {
        padding: 0 1rem;
    }

    .hero-prev,
    .hero-next {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .section-header-mag h2 {
        font-size: 1.4rem;
    }

    .mag-post-card {
        gap: 0;
    }

    .mag-post-content {
        padding: 1.5rem;
    }

    .mag-post-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.45rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 12px;
    }

    .hero-read-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .mag-post-meta {
        flex-direction: column;
        gap: 8px;
    }
}


.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.story-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-gold);
    color: #000;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-body {
    padding: 1.5rem;
}

.story-meta {
    color: #777;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.story-meta i {
    margin-right: 5px;
}

.story-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 0.75rem 0;
}

.story-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.story-title a:hover {
    color: var(--primary-gold);
}

.story-desc {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.story-author {
    color: #666;
    font-size: 0.8rem;
}

.story-author i {
    color: var(--primary-gold);
    margin-right: 6px;
}

.story-link {
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.story-link:hover {
    color: #fff;
}

.story-link i {
    transition: transform 0.3s ease;
}

.story-link:hover i {
    transform: translateX(4px);
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px dashed rgba(255, 193, 7, 0.3);
}

.empty-state i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.empty-state h4 {
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.empty-state p {
    color: #888;
    margin: 0;
}

/* Connect Section */
.connect-section {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), rgba(255, 152, 0, 0.03));
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 193, 7, 0.15);
}

.connect-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.connect-content p {
    color: #888;
    margin: 0 0 1.5rem 0;
}

.connect-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.connect-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.connect-btn.ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.connect-btn.yt {
    background: #ff0000;
    color: #fff;
}

.connect-btn.tw {
    background: #000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.connect-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
        margin: -0.5rem -0.5rem 2rem -0.5rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-excerpt {
        font-size: 0.95rem;
    }

    .hero-controls {
        bottom: 1rem;
        right: 1rem;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .connect-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.4rem;
    }

    .hero-tag {
        font-size: 0.65rem;
        padding: 6px 12px;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .connect-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

/* No Posts Card */
.no-posts-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem;
    border: 1px dashed rgba(255, 193, 7, 0.3);
}

.no-posts-icon {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

/* Sidebar Cards */
.sidebar-wrapper {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.sidebar-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.sidebar-card:hover {
    border-color: rgba(255, 193, 7, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-card-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #fff;
}

/* Welcome Card */
.welcome-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.05));
    border-color: rgba(255, 193, 7, 0.2);
}

.welcome-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.2), transparent);
    border-radius: 50%;
}

.welcome-content {
    position: relative;
    z-index: 1;
}

.welcome-card h4 {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.welcome-card p {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Stats Card */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    text-align: center;
}

.stat-item {
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-gold);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: #888;
    margin-top: 4px;
}

/* Social Card */
.social-text {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-btn.instagram {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.15), rgba(131, 58, 180, 0.1));
    color: #e1306c;
    border: 1px solid rgba(225, 48, 108, 0.3);
}

.social-btn.instagram:hover {
    background: linear-gradient(135deg, #e1306c, #833ab4);
    color: #fff;
    transform: translateX(5px);
}

.social-btn.youtube {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.social-btn.youtube:hover {
    background: #ff0000;
    color: #fff;
    transform: translateX(5px);
}

.social-btn.twitter {
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn.twitter:hover {
    background: #000;
    color: #fff;
    transform: translateX(5px);
}

/* CTA Card */
.cta-card {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.05));
    border-color: rgba(255, 193, 7, 0.25);
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
    color: #000;
    animation: pulse-glow 2s infinite;
}

.cta-card h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-card p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e1306c, #833ab4);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
    color: #fff;
}

/* =========================
   ULTIMATE CINEMATIC HOMEPAGE
========================= */
