/* ============================================
   BIZZSHORT - CLEAN & COMPLETE CSS
============================================ */

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

html {
    scroll-behavior: smooth;
}

::selection {
    background: #e74c3c;
    color: white;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f8f9fa;
    overflow-x: hidden;
}

/* Brand tokens (also defined in global-enhancements.css :root) */
:root {
    --brand-blue: #004de6;
    --brand-blue-rgb: 0, 77, 230;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* LAYOUT WRAPPER */
.page-wrapper-with-ads {
    width: 100%;
    margin: 0 auto;
}

.main-content-wrapper {
    max-width: 1600px;
    margin: 0 auto;
}

.side-ad {
    display: none;
}

/* CONTAINER */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 30px;
}

/* HEADER */
.header-top-section {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
}

.logo-ad-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 8px 0;
    background: transparent;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 80px !important;
    /* Approximately 1px more than the 78.6px text block */
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
    transform: rotate(-2deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text h1 {
    font-size: 38px;
    font-weight: 800;
    color: var(--brand-blue);
    font-family: 'Poppins', sans-serif;
    margin: 0 0 2px 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.logo-text p {
    font-size: 13px;
    /* Slightly larger for readability */
    color: #000;
    /* Pure black text */
    background: transparent;
    /* Remove blue capsule */
    padding: 0;
    /* Remove padding */
    border-radius: 0;
    /* Remove capsule shape */
    display: block;
    /* Ensure it stays below h1 */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Inter', sans-serif;
    margin: 2px 0 0 0;
    font-weight: 700;
    line-height: 1.2;
    border: none;
    /* Ensure no border */
}

/* About/other pages use .logo-brand/.logo-tagline inside .logo-text */
.logo-text .logo-brand {
    font-size: 38px;
    font-weight: 800;
    color: var(--brand-blue);
    font-family: 'Poppins', sans-serif;
    margin: 0 0 2px 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.logo-text .logo-tagline {
    font-size: 11px;
    color: #ffffff;
    background: rgba(var(--brand-blue-rgb), 0.95);
    padding: 4px 10px;
    border-radius: 999px;
    display: inline-block;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    margin: 0;
    font-weight: 700;
    line-height: 1.1;
}

.ad-banner-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-ad-banner {
    max-width: 970px;
    height: 90px;
    border-radius: 6px;
    border: none;
    object-fit: contain;
}

/* NAVBAR - STATIC DESIGN */
.navbar-section {
    background: rgba(var(--brand-blue-rgb), 0.92);
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.3s ease;
}

.navbar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.10) 0%,
            rgba(255, 255, 255, 0.02) 60%,
            rgba(0, 0, 0, 0.06) 100%);
    pointer-events: none;
}

.navbar-section.scrolled {
    background: rgba(var(--brand-blue-rgb), 0.72);
    border-bottom-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.28);
}

.navbar-section .main-nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.navbar-section .main-nav a {
    display: block;
    color: rgba(255, 255, 255, 0.95);
    padding: 18px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.navbar-section .main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.55) 100%);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-section .main-nav a:hover::before,
.navbar-section .main-nav a.active::before {
    width: 80%;
}

.navbar-section .main-nav a:hover,
.navbar-section .main-nav a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* MAIN CONTENT */
.main-content {
    padding: 40px 0;
}

/* BREAKING NEWS + SIDEBAR */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-bottom: 40px;
}

.breaking-news-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.breaking-header {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #e74c3c 100%);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(231, 76, 60, 0.3);
}

.breaking-icon {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.breaking-header h2 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Video Player - Click to play */
.breaking-video-player {
    position: relative;
    cursor: pointer;
}

.breaking-video-player:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(230, 33, 23, 0.6);
}

.main-video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.main-video-wrapper img {
    transition: transform 0.3s ease;
}

.breaking-video-player:hover .main-video-wrapper img {
    transform: scale(1.02);
}

/* Breaking News Grid - 2 rows of 3 columns */
.breaking-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    padding: 24px 0;
    /* Reduced horizontal padding since sidebar exists */
}

.breaking-news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    cursor: pointer;
}

.breaking-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.breaking-news-card .video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.breaking-news-card .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breaking-news-card .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.breaking-news-card:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 0, 0, 1);
}

.breaking-news-card .play-overlay i {
    color: white;
    font-size: 24px;
}

.breaking-news-card .news-content {
    padding: 16px;
}

.breaking-news-card .news-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.breaking-news-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.breaking-news-card p {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.breaking-news-card .news-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #95a5a6;
}

.breaking-news-card .news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-breaking-story {
    position: relative;
    height: 480px;
    /* Increased height to match side stack */
    border-radius: 8px;
    overflow: hidden;
}

/* Breaking Grid Wrapper for layout */
.breaking-grid-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 24px;
}

.main-breaking-story {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 21/9;
    /* Wider for top placement */
    min-height: 400px;
}

.news-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    /* Tighter gap */
    padding: 0;
    min-width: 0;
}

.news-card {
    display: flex;
    gap: 10px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px;
    /* Reduced padding */
    align-items: center;
    min-height: 100px;
    /* Compact height */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 0;
    overflow: hidden;
    /* Prevent overflow */
}

.news-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.news-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-card h4 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #2c3e50;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    /* Standard property for compatibility */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Fix Interview Card Title Visibility */
.interview-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50 !important;
    /* Force visibility */
    margin: 10px 0;
    z-index: 2;
    position: relative;
    opacity: 1;
    visibility: visible;
}

.interview-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.interview-image-container {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.main-breaking-story img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px;
    color: white;
}

.story-category {
    background: #e74c3c;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.story-overlay h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 10px 0;
}

.story-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    opacity: 0.9;
}

.news-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 0 0 0;
    /* Top spacing only, no side padding */
}

.news-card {
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.news-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.news-card-content {
    padding: 15px;
}

.news-category {
    background: #3498db;
    color: white;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
}

.news-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    margin: 8px 0;
}

.news-card p {
    font-size: 12px;
    color: #7f8c8d;
    line-height: 1.4;
}

.news-meta {
    font-size: 11px;
    color: #95a5a6;
    margin-top: 8px;
}

/* MARKET SIDEBAR */
.market-sidebar {
    background: #34495e;
    border-radius: 8px;
    position: sticky;
    top: 80px;
    height: fit-content;
}

.sidebar-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 15px 20px;
    border-bottom: 3px solid #e74c3c;
}

.sidebar-header h3 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.market-cards-stack {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.market-card {
    background: white;
    border-radius: 16px;
    /* Extra rounded for feature cards */
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.market-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
}

.market-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.market-icon {
    font-size: 24px;
}

.market-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
}

.market-value {
    font-size: 26px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 8px;
}

.market-change {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
}

.market-change.positive {
    background: #e8f5e9;
    color: #27ae60;
}

.market-change.negative {
    background: #ffebee;
    color: #e74c3c;
}

.market-card p {
    font-size: 12px;
    color: #7f8c8d;
}

/* CONTENT SECTIONS */
.content-section {
    padding: 60px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    padding-bottom: 15px;
    border-bottom: 3px solid transparent;
    background: linear-gradient(to right, #e74c3c 0%, #c0392b 50%, #e74c3c 100%) left bottom no-repeat;
    background-size: 100% 3px;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: #e74c3c;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #2c3e50;
}

.section-tabs {
    display: flex;
    gap: 10px;
    background: white;
    padding: 6px;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tab-btn {
    padding: 10px 24px;
    background: transparent;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2c3e50;
}

.tab-btn:hover {
    background: #f8f9fa;
}

.tab-btn.active {
    background: #e74c3c;
    color: white;
}

.view-all {
    color: #e74c3c;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.view-all:hover {
    gap: 12px;
}

/* LATEST NEWS */
.latest-news-section {
    background: #f8f9fa;
    padding: 60px 0;
}

/* Section Header with Filters */
.section-header-with-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.section-header-with-filters .section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a365d;
    margin: 0;
}

/* Category Filter Buttons */
.category-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    background: #fff5f5;
}

.filter-btn.active {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border-color: #e74c3c;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.section-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
}

.latest-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* RIGHT SIDEBAR AD */
.right-sidebar-ad {
    position: relative;
}

.sidebar-ad-sticky {
    position: sticky;
    top: 80px;
}

.sidebar-ad-space {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sidebar-ad-space img {
    width: 100%;
    height: auto;
    display: block;
}

.news-card-large {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Deep premium shadow */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.news-card-large:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.2), 0 0 20px rgba(231, 76, 60, 0.1);
}

.news-card-large img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.category-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: saturate(140%) blur(6px);
}

.category-badge.business {
    background: #3498db;
    color: white;
}

.category-badge.markets {
    background: #27ae60;
    color: white;
}

.category-badge.technology {
    background: #9b59b6;
    color: white;
}

.category-badge.industry {
    background: #e67e22;
    color: white;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 10px 0;
    line-height: 1.3;
}

.card-content p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #95a5a6;
    padding-top: 12px;
    border-top: 1px solid #ecf0f1;
    margin-top: 12px;
}

/* ANALYSIS SECTION */
.analysis-section {
    background: white;
    padding: 60px 0;
}

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

.analysis-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.analysis-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: #e74c3c;
}

.analysis-badge {
    background: #3498db;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.analysis-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    margin: 12px 0;
}

.analysis-card p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
}

.analysis-meta {
    font-size: 12px;
    color: #95a5a6;
    padding-top: 12px;
    border-top: 1px solid #ecf0f1;
    margin-top: 12px;
}

/* OPINION SECTION */
.opinion-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.opinion-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
}

.opinion-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.opinion-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.opinion-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

/* Logo and tagline refinements handled in global header section */

.opinion-card p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
}

.opinion-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #2c3e50;
}

.author-info span {
    font-size: 12px;
    color: #95a5a6;
}

.opinion-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    margin: 12px 0;
}

.opinion-card p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
}

.opinion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.opinion-tags span {
    background: #ecf0f1;
    color: #7f8c8d;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

/* VIDEO SECTION */
.video-section {
    background: white;
    padding: 60px 0;
}

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

.video-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* Market Today Section Enhancement */
.market-sidebar {
    background: #f8faff;
    border: 1px solid #e1e8f5;
}

.market-card {
    background: #fff;
    border-left: 4px solid var(--brand-blue);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.market-card:hover {
    transform: translateX(5px);
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.market-price.up {
    color: #00b894 !important;
    font-weight: 700;
}

.market-price.down {
    color: #d63031 !important;
    font-weight: 700;
}

.market-change.up {
    background: rgba(0, 184, 148, 0.1);
    color: #00b894;
}

.market-change.down {
    background: rgba(214, 48, 49, 0.1);
    color: #d63031;
}

border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Skeleton Loader */
.skeleton-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.skeleton-thumb {
    height: 200px;
    background: linear-gradient(90deg, #eee 25%, #f5f5f5 37%, #eee 63%);
    background-size: 400% 100%;
    animation: shimmer 1.2s infinite;
}

.skeleton-title,
.skeleton-text {
    height: 14px;
    margin: 12px 16px;
    border-radius: 6px;
    background: linear-gradient(90deg, #eee 25%, #f5f5f5 37%, #eee 63%);
    background-size: 400% 100%;
    animation: shimmer 1.2s infinite;
}

.skeleton-title {
    width: 70%;
    height: 18px;
}

.skeleton-text {
    width: 90%;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    height: 200px;
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(231, 76, 60, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: #e74c3c;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.03);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.video-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    padding: 16px;
    line-height: 1.3;
}

.video-card p {
    font-size: 13px;
    color: #7f8c8d;
    padding: 0 16px 16px;
    line-height: 1.5;
}

.source-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    backdrop-filter: saturate(140%) blur(6px);
    color: #fff;
}

.source-badge.youtube {
    background: linear-gradient(135deg, #c4302b, #ff6b6b);
}

.source-badge.instagram {
    background: linear-gradient(135deg, #d6249f, #285AEB);
}

.video-card {
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.video-thumbnail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
    pointer-events: none;
}

/* BLOG CARD ENHANCEMENTS */
.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.blog-image {
    position: relative;
    height: 220px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.blog-content-area {
    padding: 16px;
}

.blog-content-area h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #2c3e50;
}

.blog-content-area p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
}

/* ADVERTISE SECTION */
.advertise-section {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 60px 0;
    color: white;
}

.advertise-section .section-title {
    color: white;
}

.advertise-section .section-header {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.section-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
}

.advertise-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.stat-box:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.advertise-solutions {
    margin-top: 40px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 24px;
}

.solution-card i {
    font-size: 28px;
    margin-bottom: 12px;
}

.solution-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.solution-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* CTA BUTTONS */
.advertise-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.advertise-cta h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 15px;
}

.advertise-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* POLICY SECTION - DARK THEME */
.policy-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0;
    position: relative;
}

.policy-section .section-header-center .section-title {
    color: white;
}

.policy-section .section-header-center .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 12px;
}

.section-header-center .section-subtitle {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 400;
}

.policy-grid-clean {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.policy-card-clean {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.policy-card-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.policy-card-clean:hover::before {
    transform: scaleX(1);
}

.policy-card-clean:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #e74c3c;
    background: rgba(255, 255, 255, 0.12);
}

.policy-icon-clean {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    transition: all 0.4s ease;
}

.policy-card-clean:hover .policy-icon-clean {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 24px rgba(231, 76, 60, 0.3);
}

.policy-card-clean h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.3;
}

.policy-card-clean p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
    min-height: 60px;
}

.policy-link-clean {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e74c3c;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.policy-link-clean:hover {
    gap: 12px;
}

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

/* Responsive for Policy Section */
@media (max-width: 1200px) {
    .policy-grid-clean {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 60px 0;
    }

    .section-header-center .section-title {
        font-size: 28px;
    }

    .policy-grid-clean {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .policy-card-clean {
        padding: 32px 24px;
    }

    .policy-card-clean p {
        min-height: auto;
    }
}

/* INDUSTRY UPDATES */
.industry-section {
    background: white;
    padding: 60px 0;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industry-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: #e74c3c;
}

.industry-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.industry-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 15px 0;
}

.industry-card p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: #e74c3c;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
}

/* CLIENT/FEATURED PARTNERS */
.client-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.client-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    transition: all 0.3s ease;
}

.client-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.client-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    padding: 40px 30px;
    color: white;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.client-card:hover .client-overlay {
    padding: 50px 30px;
}

.client-badge {
    background: rgba(231, 76, 60, 0.9);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.client-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 12px 0;
}

.client-overlay p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 12px 0;
}

.client-link {
    color: white;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    transition: gap 0.3s ease;
}

.client-link:hover {
    gap: 12px;
}

/* AD BANNER */
.ad-banner-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.ad-label-top {
    font-size: 10px;
    color: #95a5a6;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
}

.horizontal-ad-space {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.horizontal-ad-space img {
    width: 100%;
    height: auto;
}

/* INTERVIEW SECTION */
.interview-section {
    background: white;
    padding: 60px 0;
}

/* Interview Videos Grid - Base Styles */
.interview-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    /* Force all cards in a row to the same height */
    gap: 25px;
    margin-top: 30px;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .interview-videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .interview-videos-grid {
        grid-template-columns: 1fr;
    }
}

/* PODCASTS SECTION */
.podcasts-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.podcasts-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.podcast-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.podcast-item:hover {
    transform: translateY(-5px);
}

.video-thumbnail-wrapper {
    position: relative;
    height: 180px;
}

.podcast-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 10px;
}

.podcast-placeholder i {
    font-size: 32px;
}

.podcast-info {
    padding: 15px;
}

.podcast-info .tag {
    font-size: 10px;
    font-weight: 700;
    color: #e74c3c;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.podcast-info h3 {
    font-size: 15px;
    line-height: 1.4;
    color: #2c3e50;
    margin: 0;
}

.podcast-ad-slot {
    background: #eee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.ad-placeholder-vertical {
    color: #999;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1100px) {
    .podcasts-grid {
        grid-template-columns: 1.5fr 1fr;
    }

    .podcast-ad-slot {
        grid-column: span 2;
        min-height: 100px;
    }
}

@media (max-width: 768px) {
    .podcasts-grid {
        grid-template-columns: 1fr;
    }

    .podcast-ad-slot {
        grid-column: span 1;
    }
}

/* Interview Video Card */
.interview-video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.interview-video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Video Embed Wrapper */
.interview-video-card .video-embed-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    overflow: hidden;
}

/* Instagram Thumbnail */
.interview-video-card .instagram-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Instagram Placeholder */
.interview-video-card .instagram-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.interview-video-card .instagram-placeholder i {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.interview-video-card .instagram-placeholder span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Play Overlay */
.interview-video-card .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E4405F;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.interview-video-card:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Interview Details */
.interview-details {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.interview-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #0088cc;
    /* Solid Professional Blue */
    color: white;
    border-radius: 4px;
    /* More industrial square look as in screenshot */
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    width: fit-content;
}

.interview-tag.upcoming-tag {
    background: #3498db;
    /* Lighter blue for upcoming */
}

.interview-details h3 {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 2.8em;
    /* Ensure consistent spacing for 1 or 2 line titles */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.interview-video-card .video-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #7f8c8d;
    margin-top: auto;
}

.interview-video-card .video-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.interview-video-card .video-meta i {
    color: #E4405F;
}

/* Interview Videos Grid - Instagram Reels */
.interview-videos-grid.instagram-reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.interview-video-card.instagram-reel-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.interview-video-card.instagram-reel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.video-embed-wrapper.instagram-embed {
    position: relative;
    width: 100%;
    padding-bottom: 125%;
    /* Vertical aspect ratio for Instagram reels */
    background: #000;
    overflow: hidden;
}

.video-embed-wrapper.instagram-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Instagram thumbnail (safer than iframe embeds) */
.instagram-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.instagram-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-thumbnail:hover img {
    transform: scale(1.05);
}

.instagram-thumbnail .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.instagram-thumbnail:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Instagram Placeholder for Reels */
.instagram-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.instagram-placeholder i {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.instagram-placeholder span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Make the anchor card look like article */
a.interview-video-card.instagram-reel-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.interview-details {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.interview-tag.instagram-tag {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
}

.interview-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
    margin: 0;
}

.video-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #95a5a6;
}

.video-meta i {
    margin-right: 4px;
}

/* Original Interview Grid */
.interview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.interview-card {
    display: flex;
    gap: 20px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.interview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.interview-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.interview-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.interview-tag {
    background: #3498db;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
    margin-bottom: 12px;
}

.interview-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    margin: 8px 0;
}

.interview-content p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    flex: 1;
}

.interview-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #95a5a6;
    margin-top: 12px;
}

/* EVENTS SECTION - DARK THEME */
.events-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.events-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.events-section .section-title {
    color: white;
    font-size: 36px;
    font-weight: 800;
}

.events-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-top: 10px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.event-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.event-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #e74c3c;
}

.event-date {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 90px;
}

.event-date .date-day {
    font-size: 32px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.event-date .date-month {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    margin-top: 5px;
}

.event-content {
    padding: 25px;
    flex: 1;
}

.event-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.event-location,
.event-time {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-location i,
.event-time i {
    color: #e74c3c;
}

.event-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.event-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

/* ABOUT US SECTION - DARK THEME */
.about-section {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
    padding: 80px 0;
    position: relative;
}

.about-section .section-header-center .section-title {
    color: white;
}

.about-section .section-header-center .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.about-content-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-content-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.about-content-box p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.about-stat-card .stat-number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.about-stat-card .stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.value-card-mini {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-card-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.12);
    border-color: #e74c3c;
}

.value-icon-mini {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.value-card-mini h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.value-card-mini p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* ADVERTISE SECTION - DARK THEME */
.advertise-section {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
    padding: 80px 0;
    color: white;
    position: relative;
}

.advertise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.advertise-section .section-title,
.advertise-section .section-subtitle {
    color: white;
}

.advertise-stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
}

.ad-stat-item {
    text-align: center;
}

.ad-stat-item h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.ad-stat-item p {
    font-size: 16px;
    opacity: 0.9;
}

.advertise-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.ad-option-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.ad-option-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    border-color: #e74c3c;
}

.ad-option-card.featured-option {
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid #e74c3c;
}

.featured-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.ad-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.ad-option-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.ad-option-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.ad-price {
    font-size: 18px;
    font-weight: 700;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.advertise-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-button-large {
    display: inline-block;
    padding: 16px 48px;
    background: white;
    color: #667eea;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

/* EVENTS SECTION (continuation) */

.event-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.event-date {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    color: white;
    min-width: 70px;
    height: fit-content;
}

.date-day {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
}

.event-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.event-location,
.event-time {
    font-size: 13px;
    color: #7f8c8d;
    margin: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-btn {
    margin-top: 12px;
    padding: 10px 20px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* NEWS SECTION */
.news-section {
    background: white;
    padding: 60px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.news-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.news-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-item-content {
    padding: 20px;
}

.news-badge {
    background: #27ae60;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.news-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    margin: 10px 0;
}

.news-item p {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.5;
}

.news-item-meta {
    display: flex;
    gap: 15px;
    font-size: 11px;
    color: #95a5a6;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #ecf0f1;
}

/* FOOTER - PREMIUM DESIGN */
.site-footer {
    background: linear-gradient(180deg, #1a1f2e 0%, #2c3e50 50%, #1a252f 100%);
    color: white;
    padding: 70px 0 0;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e74c3c 50%, transparent 100%);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.footer-grid-enhanced {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 28px;
    color: white;
    position: relative;
    padding-bottom: 14px;
    letter-spacing: 0.5px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

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

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

.footer-logo h3 {
    font-size: 24px;
    font-weight: 800;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 16px 0;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
}

/* Facebook - Blue */
.footer-social a:nth-child(1) {
    background: linear-gradient(135deg, #1877f2, #0d5dbf);
}

.footer-social a:nth-child(1):hover {
    background: linear-gradient(135deg, #0d5dbf, #1877f2);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

/* Twitter - Light Blue */
.footer-social a:nth-child(2) {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.footer-social a:nth-child(2):hover {
    background: linear-gradient(135deg, #0d8bd9, #1da1f2);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.4);
}

/* LinkedIn - Blue */
.footer-social a:nth-child(3) {
    background: linear-gradient(135deg, #0077b5, #005582);
}

.footer-social a:nth-child(3):hover {
    background: linear-gradient(135deg, #005582, #0077b5);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4);
}

/* Instagram - Gradient */
.footer-social a:nth-child(4) {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social a:nth-child(4):hover {
    background: linear-gradient(135deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(240, 148, 51, 0.4);
}

/* YouTube - Red */
.footer-social a:nth-child(5) {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.footer-social a:nth-child(5):hover {
    background: linear-gradient(135deg, #cc0000, #ff0000);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-links a:hover::before {
    width: 100%;
}

.newsletter-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #e74c3c;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact i {
    color: #e74c3c;
    width: 18px;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin-bottom: 10px;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #e74c3c;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-newsletter button:hover {
    background: #c0392b;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-copyright {
    font-weight: 500;
}

.footer-developed {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.admin-link-clean {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.admin-link-clean:hover {
    background: rgba(231, 76, 60, 0.2);
    border-color: #e74c3c;
    transform: translateY(-2px);
}

.admin-link-clean i {
    font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .content-with-sidebar {
        grid-template-columns: 1fr;
    }

    .market-sidebar {
        position: static;
    }

    .section-with-sidebar {
        grid-template-columns: 1fr;
    }

    .footer-grid-enhanced {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }

    .right-sidebar-ad {
        display: none;
    }

    .latest-news-grid,
    .analysis-grid,
    .video-grid,
    .news-grid,
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .opinion-grid,
    .client-grid,
    .interview-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advertise-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: relative;
    }

    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(44, 62, 80, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .main-nav ul.active {
        display: flex;
    }

    .main-nav a {
        padding: 16px 30px;
        text-align: left;
        border-left: 3px solid transparent;
    }

    .main-nav a:hover,
    .main-nav a.active {
        border-left-color: #e74c3c;
        background: rgba(231, 76, 60, 0.15);
    }

    .logo-text h1 {
        font-size: 28px;
    }

    .logo-text p {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .logo-img {
        width: 55px;
        height: 55px;
    }

    .ad-banner-container {
        display: none;
    }

    .side-ad {
        display: none;
    }

    .main-nav a {
        padding: 12px 16px;
        font-size: 12px;
    }

    .news-cards-grid,
    .latest-news-grid,
    .analysis-grid,
    .video-grid,
    .news-grid,
    .industry-grid,
    .events-grid,
    .client-grid,
    .interview-grid,
    .advertise-stats,
    .solutions-grid,
    .policy-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-left {
        align-items: center;
    }

    .interview-card {
        flex-direction: column;
    }

    .interview-card img {
        width: 100%;
        height: 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 24px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

.empty-state {
    grid-column: 1 / -1;
    background: #fff;
    border: 1px dashed #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    color: #7f8c8d;
}

/* ============================================
   VIDEO MODAL STYLES
============================================ */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 10001;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.close-modal-btn {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.close-modal-btn:hover {
    background: white;
    color: #e74c3c;
    transform: rotate(90deg);
}

.video-embed-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: #7f8c8d;
    grid-column: 1 / -1;
}

.loading-spinner::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #e74c3c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* No Videos Message */
.no-videos-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.no-videos-message i {
    font-size: 64px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.no-videos-message p {
    font-size: 18px;
    color: #7f8c8d;
}

/* ============================================
   CHART MODAL - STOCK CHART POPUP
   ============================================ */
.chart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.chart-modal.active {
    display: flex;
}

.chart-modal-content {
    background: white;
    border-radius: 16px;
    padding: 30px;
    width: 90%;
    max-width: 900px;
    max-height: 80vh;
    overflow: auto;
}

.chart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.chart-modal .close-modal {
    background: #e74c3c;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chart-modal .close-modal:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.chart-timeframe {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.timeframe-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.timeframe-btn:hover,
.timeframe-btn.active {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.chart-container {
    width: 100%;
    height: 400px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.chart-info {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }

    .close-modal-btn {
        top: -45px;
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

/* ============================================
   LATEST UPDATES VIDEO GRID
   ============================================ */
#latestUpdatesGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 25px;
    margin-top: 20px;
    align-items: stretch;
}

.news-video-card-large {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.news-video-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.15);
}

.news-video-card-large .video-player-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #000;
}


.news-video-card-large .video-thumbnail-img {
    width: 100% !important;
    height: 200px !important;
    min-height: 200px !important;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block !important;
    background: #f0f0f0;
}

.news-video-card-large:hover .video-thumbnail-img {
    transform: scale(1.05);
}

/* Additional fix for video thumbnails in Latest Updates grid */
.news-video-grid-large .video-thumbnail-img,
.news-video-grid-large .video-thumbnail img {
    width: 100% !important;
    height: 200px !important;
    min-height: 200px !important;
    object-fit: cover;
    display: block !important;
}

.news-video-card-large .play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}

.news-video-card-large:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.15);
    background: #FF0000;
}

.news-video-card-large .play-button-overlay i {
    color: white;
    font-size: 24px;
}

.news-video-card-large .video-card-content {
    padding: 16px;
}

.news-video-card-large .video-category-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.news-video-card-large .video-category-badge.business {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.news-video-card-large .video-category-badge.markets {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.news-video-card-large .video-category-badge.technology {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.news-video-card-large .video-category-badge.industry {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.news-video-card-large .video-title {
    font-size: 15px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-video-card-large .video-excerpt {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-video-card-large .video-meta-info {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #95a5a6;
}

.news-video-card-large .video-meta-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Latest Updates Grid Responsive */
@media (max-width: 1200px) {
    #latestUpdatesGrid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 900px) {
    #latestUpdatesGrid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .section-header-with-filters {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-filters {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
        white-space: nowrap;
    }
}

@media (max-width: 600px) {
    #latestUpdatesGrid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .section-header-with-filters .section-title {
        font-size: 24px;
    }
}

/* Fix for Latest Updates video thumbnails */
.news-card-large .video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #000;
}

.news-card-large .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.news-card-large:hover .video-thumbnail img {
    transform: scale(1.05);
}

.news-card-large .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(230, 33, 23, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: none;
}

.news-card-large .play-overlay i {
    color: white;
    font-size: 24px;
    margin-left: 3px;
}

.news-card-large:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(230, 33, 23, 1);
}

.news-card-large .video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.news-card-large .card-category {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.news-card-large .card-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-large .card-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #7f8c8d;
    flex-wrap: wrap;
}

.news-card-large .card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-card-large .card-meta i {
    font-size: 14px;
}