/*
Theme Name: RTS Capital Management
Theme URI: https://nonconsesus.com
Author: OnTopLocal
Description: Custom Theme for RTS Capital
Version: 1.0
*/

/* ============================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================ */

:root {
    /* Primary Colors */
    --bs-body-bg: #111111;
    --primary-gray: #444444;
    --primary-gray-alt: #454545;

    /* Accent Colors */
    --bs-primary: #fc9303;
    --accent-orange-light: #ffa632;
    --accent-orange-dark: #d67b00;

    /* Navy Colors */
    --navy-dark: #1a2a3a;
    --navy-medium: #2d3f50;

    /* Supporting Colors */
    --gray-light: #666666;
    --gray-lighter: #888888;
    --gray-darkest: #222222;

    /* Text Colors */
    --bs-body-color: #ffffff;
    --text-secondary: #dddddd;
    --text-muted: #999999;
    --text-light: #ffffff;

    /* Status Colors */
    --bs-success: #4caf50;
    --bs-warning: #fc9303;
    --bs-danger: #f44336;
    --bs-info: #2196f3;

    /* Typography Scale */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-md: 1.125rem;
    --font-size-lg: 1.618rem;
    --font-size-xl: 2.618rem;
    --font-size-2xl: 4.236rem;

    /* Gradients */
    --accent-gradient: linear-gradient(
        135deg,
        var(--bs-primary) 0%,
        var(--accent-orange-dark) 100%
    );
    --bg-gradient-dark: linear-gradient(
        145deg,
        var(--bs-body-bg) 0%,
        var(--gray-darkest) 100%
    );
    --bg-dark-gradient: linear-gradient(
        145deg,
        var(--gray-darkest) 0%,
        #1a1a1a 100%
    );
    --bg-navy-gradient: linear-gradient(
        145deg,
        var(--navy-dark) 0%,
        var(--navy-medium) 100%
    );
    --bg-primary-gradient: linear-gradient(
        145deg,
        var(--bs-primary) 0%,
        var(--accent-orange-dark) 100%
    );

    /* Elevation System */
    --elevation-1: 0 4px 6px rgba(0, 0, 0, 0.2);
    --elevation-2: 0 8px 15px rgba(0, 0, 0, 0.25);
    --elevation-3: 0 16px 28px rgba(0, 0, 0, 0.3);
    --elevation-4: 0 24px 38px rgba(0, 0, 0, 0.35);
    --elevation-5: 0 32px 48px rgba(0, 0, 0, 0.4);

    /* Animation Timing */
    --timing-fast: 200ms;
    --timing-medium: 400ms;
    --timing-slow: 600ms;

    /* Easing Curves */
    --ease-in-out: cubic-bezier(0.33, 0.1, 0.5, 1);
    --ease-emphasis: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Layout */
    --navbar-height: 90px;
}

/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

*:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(252, 147, 3, 0.5);
}

::selection {
    background-color: rgba(252, 147, 3, 0.3);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

body {
    font-family: "Open Sans", sans-serif;
    background: linear-gradient(
        135deg,
        var(--navy-dark) 0%,
        var(--navy-medium) 100%
    );
    background-image: 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='%23222222' fill-opacity='0.4'%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");
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    letter-spacing: 0.01em;
    line-height: 1.6;
    scroll-behavior: smooth;
    /* padding-top: var(--navbar-height); */
    overflow-x: hidden;
}

/* Page-specific navbar spacing overrides */
body.page-template-page-member-dashboard,
body.page-template-page-login,
body.page-template-page-register,
body.page-template-page-member-login,
body.page-template-page-simple-login,
body.page-template-page-live-webinars,
body.single-news,
body.post-type-archive-news,
body.archive {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h1 {
    font-size: var(--font-size-2xl);
}
h2 {
    font-size: var(--font-size-xl);
}
h3 {
    font-size: var(--font-size-lg);
}
h4 {
    font-size: var(--font-size-md);
}
h5 {
    font-size: var(--font-size-base);
}
h6 {
    font-size: var(--font-size-sm);
}

/* Text Utilities */
.text-primary {
    color: var(--bs-primary) !important;
}
.text-secondary {
    color: var(--text-secondary) !important;
}
.text-muted {
    color: var(--text-muted) !important;
}
.text-light {
    color: var(--text-light) !important;
}

.text-highlight {
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: "";
    position: absolute;
    left: -5px;
    bottom: 0;
    width: 0;
    height: 8px;
    background-color: rgba(252, 147, 3, 0.3);
    z-index: -1;
    transition: width 0.5s var(--ease-bounce);
}

.text-highlight:hover::after,
.active .text-highlight::after {
    width: calc(100% + 10px);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.bg-gradient-dark {
    background: var(--bg-gradient-dark);
}
.bg-dark-gradient {
    background: var(--bg-dark-gradient);
}
.bg-navy-gradient {
    background: var(--bg-navy-gradient);
}
.bg-primary-gradient {
    background: var(--bg-primary-gradient);
}

.section {
    position: relative;
}

/* Hero section spacing for pages with custom navbar handling */
.account-hero,
.news-hero,
.login-hero,
.register-hero,
.webinars-hero,
.post-type-archive-news .section.bg-navy-gradient,
.page-template-page-login .hero-section,
.page-template-page-register .hero-section,
.page-template-page-member-login .hero-section,
.page-template-page-simple-login .hero-section,
.page-template-page-live-webinars .hero-section {
    padding-top: var(--navbar-height) !important;
}

/* Fallback section spacing */
.site-content > section:first-child,
.site-content section:first-of-type {
    padding-top: calc(1rem + var(--navbar-height));
}

/* Archive page specific fixes */
body.post-type-archive-newsletter section:first-of-type,
body.post-type-archive-webinar section:first-of-type {
    margin-top: 0px !important;
    /* padding-top: calc(5rem + var(--navbar-height)) !important; */
}

/* ============================================
   NAVIGATION SYSTEM
   ============================================ */

.navbar {
    background-color: rgba(17, 17, 17, 0.95);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(252, 147, 3, 0.2);
    transition: all var(--timing-medium) var(--ease-in-out);
    z-index: 1000;
    backdrop-filter: blur(0px);
    height: var(--navbar-height);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.navbar-scrolled {
    box-shadow: var(--elevation-2);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    transition: transform var(--timing-medium) var(--ease-bounce);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem !important;
    transition: all var(--timing-medium) var(--ease-in-out);
    border-radius: 4px;
}

.nav-link:hover {
    background-color: rgba(252, 147, 3, 0.1);
    transform: translateY(-2px);
}

/* Mobile Menu System */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(252, 147, 3, 0.1);
    color: #fc9303;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 2rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(252, 147, 3, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #fc9303;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(252, 147, 3, 0.1);
    transform: rotate(90deg);
}

.mobile-nav-list {
    padding: 2rem 0;
    list-style: none;
    margin: 0;
}

.mobile-nav-item {
    margin-bottom: 0.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #fc9303;
    background: rgba(252, 147, 3, 0.1);
    border-left-color: #fc9303;
    transform: translateX(5px);
}

.mobile-nav-icon {
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.mobile-menu-footer {
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(252, 147, 3, 0.2);
    margin-top: auto;
}

.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-btn {
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.mobile-btn-primary {
    background: linear-gradient(135deg, #fc9303, #e67e00);
    color: #111;
}

.mobile-btn-outline {
    background: transparent;
    color: #fc9303;
    border: 2px solid #fc9303;
}

.mobile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 147, 3, 0.3);
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.mobile-social-link {
    color: #fc9303;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.mobile-social-link:hover {
    color: white;
    transform: scale(1.2);
}

/* Navigation responsive behavior */
@media (min-width: 992px) {
    .navbar-nav {
        display: flex !important;
    }

    .mobile-menu-toggle {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .navbar-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

/* ============================================
   BUTTON SYSTEM
   ============================================ */

/* Base Button Styles */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: all var(--timing-medium) var(--ease-bounce);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

/* Primary Button */
.btn-primary {
    background: var(--accent-gradient);
    color: black;
    box-shadow: 0 4px 15px rgba(252, 147, 3, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(
        135deg,
        var(--accent-orange-light) 0%,
        var(--bs-primary) 100%
    );
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 147, 3, 0.4);
    color: rgba(0, 0, 0, 0.8);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(252, 147, 3, 0.3);
    transition: all 0.1s ease;
}

/* Outline Buttons */
.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--bs-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-outline-primary {
    border: 2px solid rgba(252, 147, 3, 0.5);
    color: #fc9303;
    background: transparent;
    position: relative;
}

.btn-outline-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(252, 147, 3, 0.1) 0%,
        rgba(252, 147, 3, 0.05) 100%
    );
    transition: width 0.3s ease;
    z-index: 0;
}

.btn-outline-primary:hover::after {
    width: 100%;
}

.btn-outline-primary:hover {
    border-color: #fc9303;
    color: #fc9303;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 147, 3, 0.2);
}

/* Premium Button Effects */
.btn-premium {
    position: relative;
    overflow: hidden;
    transition: all var(--timing-slow) var(--ease-bounce);
    transform-style: preserve-3d;
}

.btn-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: all 0.6s ease;
}

.btn-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(252, 147, 3, 0.4);
}

.btn-premium:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 3px 15px rgba(252, 147, 3, 0.3);
    transition: all 0.1s ease;
}

.btn-premium:hover::before {
    left: 100%;
}

/* Button Sizes */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: var(--font-size-sm);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: var(--font-size-md);
}

/* Magnetic Button Effect */
.magnetic-button {
    transition: transform var(--timing-medium) var(--ease-bounce);
    transform: translateZ(0);
}

/* Micro Interaction Effects */
.micro-interaction {
    position: relative;
    overflow: hidden;
}

.micro-interaction::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: rgba(252, 147, 3, 0.5);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    z-index: -1;
    transition:
        transform 0.6s var(--ease-bounce),
        opacity 0.6s ease;
}

.micro-interaction:active::after {
    transform: translate(-50%, -50%) scale(40);
    opacity: 1;
    transition:
        transform 0.4s var(--ease-bounce),
        opacity 0.1s ease;
}

/* Special Button Styles for Webinar/News Actions */
.webinar-action-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-live {
    background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%);
    color: white;
}

.btn-upcoming {
    background: var(--accent-gradient);
    color: #111111;
}

.btn-recording {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.webinar-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.webinar-action-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.webinar-action-btn:hover::before {
    left: 100%;
}

/* ============================================
   HERO SECTION & TYPING ANIMATION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(26, 42, 58, 0.85) 100%
        ),
        url("/wp-content/uploads/2025/06/alpha-hero.jpg") no-repeat center
            center;
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.about-hero {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(26, 42, 58, 0.85) 100%
        ),
        url("/wp-content/uploads/2025/06/about-hero.jpg") no-repeat center
            center;
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 8rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: -1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Typing Animation Container */
.typed-text-container {
    display: block;
    width: 100%;
    position: relative;
    min-height: 120px;
    height: 120px;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
}

.typed-text {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    display: inline-block;
    position: relative;
    white-space: nowrap;
    overflow: visible;
    font-size: 3.5rem;
    line-height: 1.2;
    background: linear-gradient(90deg, white 0%, #ffa632 50%, white 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 8s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.typed-cursor {
    color: #fc9303 !important;
    background: none !important;
    border: none !important;
    font-weight: 400 !important;
    height: 50px !important;
    font-size: inherit !important;
    line-height: inherit !important;
    margin-left: 2px !important;
    animation: blink 1s linear infinite !important;
}

@keyframes blink {
    0%,
    50% {
        opacity: 1;
    }
    51%,
    100% {
        opacity: 0;
    }
}

/* Market Cards in Hero */
.market-cards {
    position: relative;
    width: 100%;
    z-index: 3;
    pointer-events: auto;
}

.market-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(252, 147, 3, 0.3);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 10px;
    position: relative;
    min-width: 180px;
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: float 8s ease-in-out infinite;
    z-index: 2;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
    overflow: hidden;
}

.market-card:hover {
    transform: translateY(-8px) rotateX(8deg);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(252, 147, 3, 0.3);
    border-color: var(--bs-primary);
    background: rgba(0, 0, 0, 0.8);
}

/* Staggered card animations */
#nasdaq-card {
    animation-delay: 0s;
}
#sp500-card {
    animation-delay: 0.5s;
}
#dow-card {
    animation-delay: 1s;
}
#yield-card {
    animation-delay: 1.5s;
}
#nvda-card {
    animation-delay: 2s;
}
#aapl-card {
    animation-delay: 2.5s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(0.5deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Staggered positioning for larger screens */
@media (min-width: 992px) {
    #nasdaq-card {
        margin-top: 5px;
        margin-left: 8px;
    }
    #sp500-card {
        margin-top: 8px;
        margin-left: 3px;
    }
    #dow-card {
        margin-top: 2px;
        margin-left: 10px;
    }
    #yield-card {
        margin-top: 6px;
        margin-left: 5px;
    }
    #nvda-card {
        margin-top: 3px;
        margin-left: 12px;
    }
    #aapl-card {
        margin-top: 7px;
        margin-left: 6px;
    }
}

/* Hero Icons */
.hero-icon {
    width: 20px;
    height: 20px;
    font-size: 1rem;
    line-height: 1;
}

.hero-icon i {
    font-size: inherit;
    line-height: inherit;
}

/* Pulse animation for live indicators */
.pulse-circle {
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 50%;
    animation: pulse-live 2s infinite;
    display: inline-block;
}

@keyframes pulse-live {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Responsive Typography */
@media (max-width: 1199.98px) {
    .typed-text {
        font-size: 2.8rem;
    }
    .typed-text-container {
        min-height: 100px;
        height: 100px;
    }
}

@media (max-width: 991.98px) {
    .typed-text {
        font-size: 2.2rem;
    }
    .typed-text-container {
        min-height: 80px;
        height: 80px;
        display: block;
        justify-content: center;
    }

    .market-cards {
        position: relative;
        margin-top: 2rem;
    }

    .hero-content {
        text-align: center;
        padding: 80px 20px 40px 20px;
    }

    .d-flex.flex-wrap {
        flex-direction: column;
        align-items: center;
    }

    #nasdaq-card,
    #sp500-card,
    #dow-card,
    #yield-card,
    #nvda-card,
    #aapl-card {
        margin: 0 !important;
        min-width: 150px;
        padding: 0.75rem;
        animation: float 8s ease-in-out infinite;
    }

    .market-cards {
        padding: 2rem 0.5rem 1rem 0.5rem;
        overflow: visible;
    }

    .market-card {
        min-width: 150px;
        max-width: 100%;
        font-size: 0.9rem;
    }

    .market-card h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .typed-text {
        font-size: 1.8rem;
    }
    .typed-text-container {
        min-height: 70px;
        height: 70px;
        display: block;
    }

    .btn-premium,
    .btn-outline-light {
        width: 100%;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .typed-text {
        font-size: 1.5rem;
    }
    .typed-text-container {
        min-height: 60px;
        height: 60px;
        display: block;
    }
}

/* ============================================
   CARD SYSTEMS
   ============================================ */

/* Base Premium Card */
.premium-card {
    background: linear-gradient(
        145deg,
        rgba(69, 69, 69, 0.2) 0%,
        rgba(26, 42, 58, 0.5) 100%
    );
    border: 1px solid rgba(252, 147, 3, 0.2);
    border-radius: 10px;
    overflow: hidden;
    padding: 1rem;
    perspective: 1000px;
    transition:
        transform 0.6s var(--ease-bounce),
        box-shadow 0.6s var(--ease-in-out),
        border-color 0.3s ease;
    box-shadow: var(--elevation-2);
    position: relative;
}

.premium-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: var(--elevation-4);
    border-color: rgba(252, 147, 3, 0.5);
}

.premium-card .card-header {
    background: linear-gradient(
        145deg,
        var(--navy-medium) 0%,
        var(--navy-dark) 100%
    );
    border-bottom: 1px solid rgba(252, 147, 3, 0.3);
    transition: all 0.3s var(--ease-in-out);
    padding: 1.5rem;
}

.premium-card:hover .card-header {
    background: linear-gradient(
        145deg,
        var(--navy-dark) 0%,
        var(--navy-medium) 80%,
        var(--bs-primary) 200%
    );
    border-bottom-color: rgba(252, 147, 3, 0.5);
}

/* Feature Boxes */
.feature-box {
    background-color: rgba(69, 69, 69, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: all 0.6s var(--ease-bounce);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 800px;
}

.feature-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: var(--elevation-3);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.feature-box:hover {
    transform: translateY(-10px) scale(1.03) rotateX(3deg);
    box-shadow: var(--elevation-3);
    border-color: rgba(252, 147, 3, 0.5);
    background-color: rgba(69, 69, 69, 0.3);
}

.feature-box:hover::after {
    opacity: 1;
}

/* Feature Icon System */
.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: #111111;
    transition: all 0.5s var(--ease-bounce);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(252, 147, 3, 0.3);
}

.feature-box:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 8px 25px rgba(252, 147, 3, 0.5);
}

.feature-icon-wrapper::after {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    top: -150%;
    left: -150%;
    transition: all 0.5s var(--ease-in-out);
}

.feature-box:hover .feature-icon-wrapper::after {
    top: 150%;
    left: 150%;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(252, 147, 3, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--bs-primary);
    flex-shrink: 0;
    transition: all var(--timing-medium) var(--ease-bounce);
    border: 1px solid rgba(252, 147, 3, 0.2);
    margin-right: 1rem;
}

.premium-feature-list li:hover .feature-icon {
    transform: scale(1.1) rotate(8deg);
    background-color: rgba(252, 147, 3, 0.2);
    box-shadow: 0 0 15px rgba(252, 147, 3, 0.3);
    border-color: var(--bs-primary);
    color: var(--accent-orange-light);
}

/* Glass Panel Effects */
.glass-panel {
    background: rgba(30, 40, 50, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all var(--timing-medium) cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-panel:hover {
    background: rgba(45, 63, 80, 0.4);
    backdrop-filter: blur(15px);
    border-color: rgba(252, 147, 3, 0.3);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(252, 147, 3, 0.2);
    transform: translateY(-5px);
}

/* Testimonial Cards */
.testimonial-card {
    position: relative;
    perspective: 1000px;
}

.testimonial-card-inner {
    background: linear-gradient(
        145deg,
        rgba(45, 63, 80, 0.7) 0%,
        rgba(26, 42, 58, 0.7) 100%
    );
    border: 1px solid rgba(252, 147, 3, 0.2);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-bounce);
    transform-style: preserve-3d;
    box-shadow: var(--elevation-2);
    padding: 2rem;
}

.testimonial-card-inner:hover {
    transform: translateY(-10px) rotateY(5deg);
    border-color: rgba(252, 147, 3, 0.5);
    box-shadow: var(--elevation-4);
    background: linear-gradient(
        145deg,
        rgba(50, 70, 90, 0.7) 0%,
        rgba(30, 48, 65, 0.7) 100%
    );
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 2.5rem;
    color: var(--bs-primary);
    opacity: 0.3;
    transition: all 0.5s var(--ease-bounce);
    transform: translateZ(20px);
}

.testimonial-card-inner:hover .quote-icon {
    transform: scale(1.2) rotate(-10deg) translateZ(30px);
    opacity: 0.5;
    color: var(--accent-orange-light);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bs-primary);
    transition: all var(--timing-medium) var(--ease-bounce);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.testimonial-card-inner:hover .testimonial-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(252, 147, 3, 0.5);
    border-color: var(--accent-orange-light);
}

.rating i {
    font-size: 0.875rem;
    transition: all var(--timing-medium) var(--ease-bounce);
    opacity: 0.9;
}

.testimonial-card-inner:hover .rating i {
    transform: scale(1.2);
    color: var(--accent-orange-light);
    opacity: 1;
    text-shadow: 0 0 10px rgba(252, 147, 3, 0.3);
}

/* Team Cards */
.team-card {
    background: linear-gradient(
        145deg,
        rgba(69, 69, 69, 0.2) 0%,
        rgba(26, 42, 58, 0.5) 100%
    );
    border: 1px solid rgba(252, 147, 3, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.6s var(--ease-bounce);
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: var(--elevation-2);
}

.team-card:hover {
    transform: translateY(-15px) rotateY(5deg);
    box-shadow: var(--elevation-4);
    border-color: rgba(252, 147, 3, 0.5);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(17, 17, 17, 0.8) 0%,
        transparent 60%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    opacity: 0;
    transition: all 0.5s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s var(--ease-bounce) 0.2s;
}

.team-card:hover .team-social {
    transform: translateY(0);
    opacity: 1;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--bs-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    margin: 0 0.5rem;
    transition: all var(--timing-medium) var(--ease-bounce);
    transform: translateZ(0);
}

.social-icon:hover {
    background-color: var(--accent-orange-light);
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 8px 20px rgba(252, 147, 3, 0.5);
}

.team-info {
    background: linear-gradient(
        145deg,
        rgba(45, 63, 80, 0.3) 0%,
        rgba(26, 42, 58, 0.3) 100%
    );
    backdrop-filter: blur(5px);
    transition: all var(--timing-medium) ease;
}

.team-card:hover .team-info {
    background: linear-gradient(
        145deg,
        rgba(50, 70, 90, 0.4) 0%,
        rgba(30, 48, 65, 0.4) 100%
    );
}

/* Avatar System */
.avatar-wrapper {
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--timing-medium) var(--ease-bounce);
    border: 2px solid rgba(252, 147, 3, 0.5);
    background: var(--accent-gradient);
}

.featured-webinar-card:hover .avatar-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(252, 147, 3, 0.5);
    border-color: rgba(252, 147, 3, 0.8);
}

.avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #111111;
}

.small-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #111111;
    transition: all var(--timing-medium) var(--ease-bounce);
    background: var(--accent-gradient);
    border: 1px solid rgba(252, 147, 3, 0.5);
}

.webinar-schedule-table tr:hover .small-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 15px rgba(252, 147, 3, 0.5);
}

/* Philosophy Cards */
.philosophy-card {
    background: linear-gradient(
        145deg,
        rgba(26, 42, 58, 0.7) 0%,
        rgba(17, 17, 17, 0.8) 100%
    );
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s var(--ease-bounce);
    box-shadow: var(--elevation-2);
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--elevation-4);
    background: linear-gradient(
        145deg,
        rgba(30, 48, 65, 0.8) 0%,
        rgba(20, 20, 20, 0.9) 100%
    );
}

.philosophy-icon {
    font-size: 3rem;
    color: var(--bs-primary);
    line-height: 1;
    transition: all 0.5s var(--ease-bounce);
}

.philosophy-card:hover .philosophy-icon {
    transform: scale(1.2) rotate(-10deg);
    color: var(--accent-orange-light);
    text-shadow: 0 0 20px rgba(252, 147, 3, 0.4);
}

/* ============================================
   FORMS & INPUT ELEMENTS
   ============================================ */

/* Form Controls */
.form-control {
    background-color: rgba(69, 69, 69, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: var(--font-size-base);
}

.form-control:focus {
    background-color: rgba(69, 69, 69, 0.3);
    border-color: var(--bs-primary);
    box-shadow: 0 0 15px rgba(252, 147, 3, 0.3);
    color: #fff;
}

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

/* Dark Background Form Controls */
.form-control.bg-dark {
    background-color: rgba(0, 0, 0, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.2);
}

.form-control.bg-dark:focus {
    background-color: rgba(0, 0, 0, 0.4) !important;
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(252, 147, 3, 0.25);
}

.form-control.bg-dark::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Input Groups */
.input-group .form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(252, 147, 3, 0.25);
}

.input-group .btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(252, 147, 3, 0.25);
}

/* Newsletter Form */
.newsletter-form .form-control {
    background-color: rgba(69, 69, 69, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 4px 0 0 4px;
    transition: all 0.3s ease;
}

.newsletter-form .form-control:focus {
    background-color: rgba(69, 69, 69, 0.3);
    border-color: var(--bs-primary);
    box-shadow: 0 0 15px rgba(252, 147, 3, 0.3);
}

/* Search Forms */
#newsletter-search-form {
    position: relative;
}

#search-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Search Suggestions */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 42, 58, 0.95);
    border: 1px solid rgba(252, 147, 3, 0.3);
    border-radius: 0 0 8px 8px;
    backdrop-filter: blur(10px);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.suggestion-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
}

.suggestion-item:hover {
    background: rgba(252, 147, 3, 0.1);
    border-left: 3px solid var(--bs-primary);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-title {
    color: white;
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.suggestion-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Search Results */
.search-results-count {
    background: rgba(252, 147, 3, 0.1);
    border: 1px solid rgba(252, 147, 3, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.search-results-count .btn-link {
    text-decoration: none;
    padding: 0;
    font-size: 0.875rem;
}

.search-results-count .btn-link:hover {
    text-decoration: underline;
}

/* Form Validation States */
.form-control.is-valid {
    border-color: var(--bs-success);
}

.form-control.is-invalid {
    border-color: var(--bs-danger);
}

.form-control.is-valid:focus {
    border-color: var(--bs-success);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.form-control.is-invalid:focus {
    border-color: var(--bs-danger);
    box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.25);
}

/* Custom Select Styling */
.form-select {
    background-color: rgba(69, 69, 69, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
}

.form-select:focus {
    background-color: rgba(69, 69, 69, 0.3);
    border-color: var(--bs-primary);
    box-shadow: 0 0 15px rgba(252, 147, 3, 0.3);
}

/* Form Labels */
.form-label {
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Form Check (Checkboxes & Radio) */
.form-check-input {
    background-color: rgba(69, 69, 69, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.form-check-input:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(252, 147, 3, 0.25);
}

.form-check-label {
    color: var(--text-secondary);
}

/* Form Text */
.form-text {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

/* ============================================
   NEWSLETTER & CONTENT SECTIONS
   ============================================ */

/* Newsletter Preview Cards */
.newsletter-preview {
    background: linear-gradient(
        145deg,
        rgba(69, 69, 69, 0.2) 0%,
        rgba(26, 42, 58, 0.5) 100%
    );
    border: 1px solid rgba(252, 147, 3, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s var(--ease-bounce);
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: var(--elevation-2);
}

.newsletter-preview:hover {
    transform: translateY(-10px) rotateY(-5deg);
    box-shadow: var(--elevation-4);
    border-color: rgba(252, 147, 3, 0.5);
}

.newsletter-preview::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(252, 147, 3, 0.1),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 1;
}

.newsletter-preview:hover::before {
    left: 100%;
}

/* Newsletter Header */
.newsletter-header {
    background: linear-gradient(
        145deg,
        var(--navy-medium) 0%,
        var(--navy-dark) 100%
    );
    border-bottom: 1px solid rgba(252, 147, 3, 0.3);
    transition: all var(--timing-medium) var(--ease-in-out);
    padding: 1.25rem;
    position: relative;
}

.newsletter-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(252, 147, 3, 0.5),
        transparent
    );
}

.newsletter-preview:hover .newsletter-header {
    background: linear-gradient(
        145deg,
        var(--navy-dark) 0%,
        var(--navy-medium) 80%,
        var(--bs-primary) 200%
    );
    border-bottom-color: rgba(252, 147, 3, 0.5);
}

/* Newsletter Meta */
.newsletter-meta {
    position: relative;
    z-index: 2;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 0.875rem;
}

.newsletter-meta .d-flex {
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.newsletter-meta .d-flex:hover {
    background: rgba(252, 147, 3, 0.1);
    border-color: rgba(252, 147, 3, 0.3);
    transform: translateY(-1px);
}

.newsletter-preview:hover .newsletter-meta {
    opacity: 1;
}

.newsletter-meta .text-light,
.newsletter-meta span {
    color: #ffffff !important;
}

/* Newsletter Title */
.newsletter-title {
    position: relative;
    z-index: 2;
}

.newsletter-title a {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.newsletter-title a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fc9303, #e67e22);
    transition: width 0.3s ease;
}

.newsletter-title a:hover::after {
    width: 100%;
}

/* Newsletter Icon */
.newsletter-icon {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    transition: all 0.5s var(--ease-bounce);
    color: var(--bs-primary);
}

.newsletter-icon i {
    background: linear-gradient(135deg, #fc9303 0%, #e67e22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(252, 147, 3, 0.3));
    animation: iconGlow 3s ease-in-out infinite alternate;
}

@keyframes iconGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(252, 147, 3, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(252, 147, 3, 0.6));
    }
}

.newsletter-preview:hover .newsletter-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--accent-orange-light);
    text-shadow: 0 0 15px rgba(252, 147, 3, 0.4);
}

/* Newsletter Content */
.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-excerpt {
    font-size: 1.1rem;
    line-height: 1.7;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    color: #ffffff !important;
}

.newsletter-excerpt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #fc9303, #e67e22);
    border-radius: 0 2px 2px 0;
}

/* Key Insights */
.key-insights {
    border-radius: 6px;
    transition: all var(--timing-medium) var(--ease-in-out);
    background-color: rgba(252, 147, 3, 0.1);
    border-left: 3px solid var(--bs-primary);
    padding: 1rem;
    margin: 1.5rem 0;
    color: #ffffff !important;
}

.newsletter-preview:hover .key-insights {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(252, 147, 3, 0.2);
    background-color: rgba(252, 147, 3, 0.15);
}

.key-insights .text-light {
    color: #ffffff !important;
}

/* Newsletter Tags */
.newsletter-tags .badge {
    background: linear-gradient(
        135deg,
        rgba(252, 147, 3, 0.2) 0%,
        rgba(252, 147, 3, 0.1) 100%
    );
    border: 1px solid rgba(252, 147, 3, 0.3);
    color: #fc9303;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-tags .badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.newsletter-tags .badge:hover::before {
    left: 100%;
}

.newsletter-tags .badge:hover {
    background: linear-gradient(
        135deg,
        rgba(252, 147, 3, 0.3) 0%,
        rgba(252, 147, 3, 0.2) 100%
    );
    border-color: rgba(252, 147, 3, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 147, 3, 0.2);
}

/* Newsletter Actions */
.newsletter-actions-bar {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.1) 100%
    );
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 1rem;
}

/* Share Links */
.share-links {
    gap: 0.5rem !important;
}

.share-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.share-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(252, 147, 3, 0.2) 0%,
        rgba(252, 147, 3, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.share-link:hover::before {
    opacity: 1;
}

.share-link:hover {
    transform: translateY(-3px) scale(1.1);
    border-color: rgba(252, 147, 3, 0.5);
    color: #fc9303;
    box-shadow: 0 8px 25px rgba(252, 147, 3, 0.2);
}

.share-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.share-link.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.share-link.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.share-link.email:hover {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
}

.share-link i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.share-link:hover i {
    transform: scale(1.1);
}

/* Premium Content Overlay */
.locked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s var(--ease-bounce);
    transform: translateZ(50px);
    backdrop-filter: blur(5px);
}

.newsletter-preview:hover .locked-overlay {
    opacity: 1;
}

/* Premium Badge */
.premium-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    background-color: rgba(17, 17, 17, 0.7);
    border: 1px solid rgba(252, 147, 3, 0.3);
    border-radius: 4px;
    font-size: 0.8125rem;
    color: var(--text-light);
    transition: all var(--timing-medium) var(--ease-bounce);
}

.premium-badge:hover {
    background-color: rgba(252, 147, 3, 0.1);
    border-color: rgba(252, 147, 3, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(252, 147, 3, 0.2);
}

/* Premium Feature List */
.premium-feature-list {
    list-style: none;
    padding: 0;
}

.premium-feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    transition: all var(--timing-medium) var(--ease-in-out);
    padding: 0.5rem 0.5rem 0.5rem 0;
    border-radius: 6px;
    transform: translateZ(0);
}

.premium-feature-list li:hover {
    transform: translateX(5px);
    background-color: rgba(252, 147, 3, 0.05);
}

/* Newsletter Tabs */
.newsletter-tabs {
    display: flex;
    gap: 0.5rem;
}

.newsletter-tabs .tab-link {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.newsletter-tabs .tab-link:hover,
.newsletter-tabs .tab-link.active {
    background: var(--accent-gradient);
    color: #111111;
    border-color: #fc9303;
    text-decoration: none;
}

.newsletter-tabs .tab-link i {
    opacity: 0.8;
}

/* Content Wrapper Loading States */
.newsletter-content-wrapper {
    transition: opacity 0.3s ease;
}

.newsletter-preview.loading {
    opacity: 0.6;
    pointer-events: none;
}

.newsletter-preview.loading::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(252, 147, 3, 0.1),
        transparent
    );
    animation: shimmer 1.5s infinite;
    z-index: 10;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Newsletter Social Sharing - Hidden */
.newsletter-social-sharing {
    display: none !important;
}

/* ============================================
   CHARTS & DATA VISUALIZATION
   ============================================ */

/* Chart Containers */
.chart-container {
    background: rgba(45, 63, 80, 0.2);
    border: 1px solid rgba(252, 147, 3, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all var(--timing-medium) var(--ease-in-out);
    box-shadow: var(--elevation-2);
    transform: translateZ(0);
    height: 400px;
    max-height: 400px;
}

.chart-container:hover {
    box-shadow: var(--elevation-3);
    border-color: rgba(252, 147, 3, 0.4);
    transform: translateY(-5px);
}

.chart-header {
    border-bottom: 1px solid rgba(252, 147, 3, 0.2);
    background-color: rgba(26, 42, 58, 0.5);
    transition: all 0.3s ease;
    padding: 1rem;
    height: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chart-container:hover .chart-header {
    background-color: rgba(26, 42, 58, 0.7);
    border-bottom-color: rgba(252, 147, 3, 0.4);
}

.chart-wrapper {
    position: relative;
    height: 340px;
    max-height: 340px;
    width: 100%;
    padding: 1rem;
    overflow: hidden;
}

.chart-wrapper canvas {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
}

.chart-container canvas {
    max-height: 300px !important;
    height: 300px !important;
}

/* Stats System */
.stats-strip {
    background-color: rgba(69, 69, 69, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--timing-medium) var(--ease-in-out);
    transform: translateZ(0);
}

.stats-strip:hover {
    background-color: rgba(69, 69, 69, 0.3);
    border-color: rgba(252, 147, 3, 0.3);
    box-shadow: var(--elevation-3);
    transform: translateY(-5px);
}

.stats-item {
    position: relative;
}

.stats-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--bs-primary) 50%,
        transparent 100%
    );
}

.stats-grid {
    display: grid;
    gap: 1rem;
}

.stat-item {
    /* Additional stats styling can go here */
}

.stat-number {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Animated Number Counter */
.animate-number {
    display: inline-block;
    transition: all var(--timing-medium) var(--ease-bounce);
}

.animate-number.visible {
    animation: countUp 2s var(--ease-bounce) forwards;
}

@keyframes countUp {
    from {
        transform: translateY(20px);
        opacity: 0;
        filter: blur(5px);
    }
    to {
        transform: translateY(0);
        opacity: 1;
        filter: blur(0);
    }
}

/* Video Container Styling */
.video-container iframe {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Recording Thumbnail */
.recording-thumbnail {
    position: relative;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
}

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

.modern-webinar-card:hover .recording-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-webinar-card:hover .play-overlay {
    opacity: 1;
}

.play-icon {
    font-size: 3rem;
    color: white;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

/* Progress Indicators */
.progress-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
}

.progress-bar {
    height: 100%;
    background: var(--accent-gradient);
    width: 0%;
    transition: width 0.3s ease;
}

/* Title Separator with Animation */
.title-separator {
    width: 80px;
    height: 4px;
    background-color: var(--bs-primary);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.title-separator::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* ============================================
   ANIMATION & EFFECT SYSTEMS
   ============================================ */

/* Base Animation Classes */
.reveal-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-bounce);
}

.reveal-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Children Animation */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-bounce);
}

.stagger-children.visible > *:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible > *:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible > *:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible > *:nth-child(4) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible > *:nth-child(5) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateY(0);
}

/* Particle System */
.particle {
    position: absolute;
    background-color: rgba(252, 147, 3, 0.2);
    border-radius: 50%;
    animation: float 5s infinite ease-in-out;
    filter: blur(1px);
}

/* Countdown Animations */
.countdown {
    width: 100%;
    perspective: 1000px;
}

.countdown-item {
    flex: 1;
    transform-style: preserve-3d;
}

.countdown-value {
    background-color: var(--navy-dark);
    color: var(--bs-primary);
    font-size: 1.75rem;
    font-weight: 700;
    padding: 0.75rem 0;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    transition: all var(--timing-medium) var(--ease-bounce);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(252, 147, 3, 0.3);
}

.countdown-value::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 200%;
    top: -50%;
    left: -100px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: rotate(30deg);
    animation: countdown-shine 3s infinite;
}

@keyframes countdown-shine {
    0% {
        left: -100px;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}

.countdown-value:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(252, 147, 3, 0.3);
    color: var(--accent-orange-light);
}

.countdown-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.countdown-item:hover .countdown-label {
    color: var(--text-secondary);
}

/* Enhanced Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Animation Utility Classes */
.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Hover Effect Animations */
.hover-lift {
    transition: transform var(--timing-medium) var(--ease-bounce);
}

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

.hover-scale {
    transition: transform var(--timing-medium) var(--ease-bounce);
}

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

.hover-rotate {
    transition: transform var(--timing-medium) var(--ease-bounce);
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

/* Loading States */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bs-body-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease-out;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--bs-primary);
    animation: spin 1s linear infinite;
    position: relative;
}

.loading-spinner::before,
.loading-spinner::after {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 50%;
}

.loading-spinner::before {
    border-top-color: var(--accent-orange-light);
    opacity: 0.7;
    animation: spin 2s linear infinite;
}

.loading-spinner::after {
    border-top-color: var(--accent-orange-dark);
    opacity: 0.5;
    animation: spin 3s linear infinite;
}

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

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .particle {
        display: none;
    }
}

/* ============================================
   MEMBERSHIP CARDS & PRICING TABLES
   ============================================ */

/* Membership Cards */
.membership-card {
    background: linear-gradient(
        145deg,
        rgba(69, 69, 69, 0.2) 0%,
        rgba(26, 42, 58, 0.5) 100%
    );
    border: 1px solid rgba(252, 147, 3, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.6s var(--ease-bounce);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: var(--elevation-2);
}

.membership-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: var(--elevation-4);
    border-color: rgba(252, 147, 3, 0.5);
    z-index: 5;
}

.membership-card.popular {
    border: 2px solid var(--bs-primary);
    box-shadow: 0 10px 30px rgba(252, 147, 3, 0.2);
    z-index: 1;
}

.membership-card.popular:hover {
    box-shadow: 0 25px 50px rgba(252, 147, 3, 0.3);
    transform: translateY(-20px) rotateX(8deg);
}

.membership-card .card-header {
    background: linear-gradient(
        145deg,
        var(--navy-medium) 0%,
        var(--navy-dark) 100%
    );
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(252, 147, 3, 0.3);
    transition: all var(--timing-medium) var(--ease-in-out);
}

.membership-card:hover .card-header {
    background: linear-gradient(
        145deg,
        var(--navy-dark) 0%,
        var(--navy-medium) 80%,
        var(--bs-primary) 200%
    );
    border-bottom-color: rgba(252, 147, 3, 0.5);
}

/* Plan Icons */
.plan-icon {
    font-size: 2.5rem;
    color: var(--bs-primary);
    transition: all 0.5s var(--ease-bounce);
}

.membership-card:hover .plan-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--accent-orange-light);
    text-shadow: 0 0 15px rgba(252, 147, 3, 0.4);
}

/* Pricing Display */
.price {
    margin-top: 1rem;
    position: relative;
    display: inline-block;
    transition: all var(--timing-medium) var(--ease-bounce);
}

.membership-card:hover .price {
    transform: scale(1.05);
}

.currency {
    position: absolute;
    top: 0;
    left: -10px;
    font-size: 1.25rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.membership-card:hover .currency {
    color: var(--text-light);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bs-primary);
    line-height: 1;
    transition: all var(--timing-medium) var(--ease-bounce);
}

.membership-card:hover .amount {
    color: var(--accent-orange-light);
    text-shadow: 0 0 15px rgba(252, 147, 3, 0.5);
}

.period {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
    transition: all 0.3s ease;
}

.membership-card:hover .period {
    color: var(--text-secondary);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: 1rem;
    right: -4rem;
    background: var(--bs-primary);
    color: #111111;
    padding: 0.5rem 4rem;
    font-size: 0.875rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all var(--timing-medium) var(--ease-in-out);
}

.membership-card:hover .popular-badge {
    background: var(--accent-orange-light);
    box-shadow: 0 0 20px rgba(252, 147, 3, 0.5);
    transform: rotate(45deg) scale(1.05);
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    transition: all 0.3s var(--ease-in-out);
}

.feature-list li:last-child {
    border-bottom: none;
}

.membership-card:hover .feature-list li {
    border-bottom-color: rgba(252, 147, 3, 0.1);
}

.feature-list li:hover {
    transform: translateX(5px);
    background-color: rgba(252, 147, 3, 0.05);
    padding-left: 0.5rem;
    border-radius: 4px;
}

/* Enterprise Card Variant */
.enterprise-card {
    background: linear-gradient(
        145deg,
        rgba(26, 42, 58, 0.7) 0%,
        rgba(17, 17, 17, 0.8) 100%
    );
    border-width: 2px;
}

.enterprise-icon {
    font-size: 3rem;
    color: var(--bs-primary);
    transition: all 0.5s var(--ease-bounce);
}

.enterprise-card:hover .enterprise-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--accent-orange-light);
    text-shadow: 0 0 20px rgba(252, 147, 3, 0.5);
}

/* Premium Table System */
.premium-table-wrapper {
    background: linear-gradient(
        145deg,
        rgba(69, 69, 69, 0.2) 0%,
        rgba(26, 42, 58, 0.5) 100%
    );
    border: 1px solid rgba(252, 147, 3, 0.2);
    overflow: hidden;
    transition: all var(--timing-medium) var(--ease-in-out);
    box-shadow: var(--elevation-2);
    transform: translateZ(0);
}

.premium-table-wrapper:hover {
    box-shadow: var(--elevation-4);
    border-color: rgba(252, 147, 3, 0.4);
    transform: translateY(-5px);
}

.webinar-schedule-table {
    margin-bottom: 0;
}

.webinar-schedule-table th {
    background-color: rgba(26, 42, 58, 0.5);
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(252, 147, 3, 0.3);
    transition: all 0.3s ease;
}

.webinar-schedule-table td {
    padding: 1.25rem 1.5rem;
    color: var(--text-secondary);
    border-top: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
    transition: all var(--timing-medium) var(--ease-in-out);
}

.webinar-schedule-table tr:last-child td {
    border-bottom: none;
}

.webinar-schedule-table tr {
    transition: all var(--timing-medium) var(--ease-in-out);
    transform: translateZ(0);
}

.webinar-schedule-table tr:hover {
    background-color: rgba(252, 147, 3, 0.05);
    transform: translateX(5px);
}

.webinar-schedule-table tr:hover td {
    border-bottom-color: rgba(252, 147, 3, 0.2);
}

/* Table Content Styling */
.webinar-date {
    font-weight: 600;
    color: var(--bs-body-color);
}

.webinar-time {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Status Badges */
.badge-upcoming {
    background-color: var(--bs-primary);
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    display: inline-flex;
    align-items: center;
    transition: all var(--timing-medium) var(--ease-bounce);
    box-shadow: 0 2px 10px rgba(252, 147, 3, 0.2);
}

.webinar-schedule-table tr:hover .badge-upcoming {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(252, 147, 3, 0.3);
    background-color: var(--accent-orange-light);
}

/* Details List Styling */
.details-list .border-bottom:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Presenter Profile */
.presenter-profile {
    border: 1px solid rgba(252, 147, 3, 0.2);
    transition: all var(--timing-medium) var(--ease-bounce);
    background-color: rgba(255, 255, 255, 0.03);
}

.featured-webinar-card:hover .presenter-profile {
    border-color: var(--bs-primary);
    background-color: rgba(252, 147, 3, 0.08);
    transform: translateY(-5px);
    box-shadow: var(--elevation-2);
}

/* ============================================
   WEBINAR & NEWS ARCHIVE STYLES
   ============================================ */

/* Modern Webinar Archive */
.webinar-hero {
    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(26, 42, 58, 0.8) 100%
        ),
        url("/wp-content/uploads/2025/06/webinar-hero.jpg") center/cover;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.webinar-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

.webinar-hero .container {
    position: relative;
    z-index: 2;
}

/* Newsletter Hero */
.newsletter-hero {
    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(26, 42, 58, 0.85) 100%
        ),
        url("/wp-content/uploads/2025/06/newsletter-hero.jpg") no-repeat center
            center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.newsletter-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

.newsletter-hero .container {
    position: relative;
    z-index: 2;
}
/* News Hero */
.news-hero {
    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(58, 26, 42, 0.85) 100%
        ),
        url("/wp-content/uploads/2025/06/news-hero.jpg") no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}
.news-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}
.news-hero .container {
    position: relative;
    z-index: 2;
}

/* News Hero */
.account-hero {
    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(58, 26, 42, 0.85) 100%
        ),
        url("/wp-content/uploads/2025/06/account-hero-2.jpg") no-repeat center
            center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}
.account-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}
.account-hero .container {
    position: relative;
    z-index: 2;
}

/* Training Hero */
.training-hero {
    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(42, 58, 26, 0.85) 100%
        ),
        url("/wp-content/uploads/2025/06/training-hero-1.jpg") no-repeat center
            center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}
.training-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}
.training-hero .container {
    position: relative;
    z-index: 2;
}
/* Filter Tabs */
.webinar-filter-tabs {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
}

.webinar-nav-link {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 1.5rem 2rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.webinar-nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(252, 147, 3, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.webinar-nav-link:hover {
    color: #fc9303;
    background: rgba(252, 147, 3, 0.1);
    transform: translateY(-2px);
}

.webinar-nav-link:hover::before {
    left: 100%;
}

.webinar-nav-link.active {
    background: var(--accent-gradient);
    color: #111111;
    font-weight: 700;
}

/* Webinar Cards Grid */
.webinar-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Modern Webinar Cards */
.modern-webinar-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-webinar-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(252, 147, 3, 0.1) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.modern-webinar-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(252, 147, 3, 0.4);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(252, 147, 3, 0.2);
}

.modern-webinar-card:hover::before {
    opacity: 1;
}

/* Status Badges */
.webinar-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-live {
    background: rgba(220, 53, 69, 0.9);
    color: white;
    animation: pulse-glow 2s infinite;
}

.status-today {
    background: rgba(13, 202, 240, 0.9);
    color: white;
}

.status-upcoming {
    background: rgba(252, 147, 3, 0.9);
    color: #111111;
}

.status-recording {
    background: rgba(108, 117, 125, 0.9);
    color: white;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 5px rgba(220, 53, 69, 0.5);
    }
    50% {
        box-shadow:
            0 0 20px rgba(220, 53, 69, 0.8),
            0 0 30px rgba(220, 53, 69, 0.4);
    }
    100% {
        box-shadow: 0 0 5px rgba(220, 53, 69, 0.5);
    }
}

/* Card Content */
.webinar-card-header {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.webinar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.webinar-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.webinar-title a:hover {
    color: #fc9303;
}

.webinar-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-icon {
    width: 16px;
    height: 16px;
    color: #fc9303;
}

.webinar-excerpt {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.webinar-card-footer {
    padding: 0 1.5rem 1.5rem;
    margin-top: auto;
}

/* Calendar-style Date Display */
.webinar-date-calendar {
    background: var(--accent-gradient);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    color: #111111;
    font-weight: 700;
    min-width: 80px;
    margin-right: 1rem;
}

.calendar-day {
    font-size: 1.5rem;
    line-height: 1;
}

.calendar-month {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-year {
    font-size: 0.75rem;
    opacity: 0.8;
}

.webinar-card-layout {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.webinar-content {
    flex: 1;
}

/* Live Indicator */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #dc3545;
    border-radius: 50%;
    animation: pulse-live 2s infinite;
}

/* Section Headers */
.section-header {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(252, 147, 3, 0.05) 0%,
        rgba(252, 147, 3, 0.1) 100%
    );
    pointer-events: none;
}

.section-header h2 {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

/* News Archive Styles */
.news-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.news-tabs .tab-link {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.news-tabs .tab-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(252, 147, 3, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.news-tabs .tab-link:hover::before {
    left: 100%;
}

.news-tabs .tab-link:hover,
.news-tabs .tab-link.active {
    background: var(--accent-gradient);
    color: #111111;
    border-color: #fc9303;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 147, 3, 0.4);
}

.news-tabs .tab-link.active {
    transform: translateY(-2px);
}

.news-tabs .tab-link i {
    opacity: 0.9;
    margin-right: 0.5rem;
}

/* News Preview Cards */
.news-preview {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.news-preview:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.news-preview .news-header {
    background: linear-gradient(
        135deg,
        rgba(69, 69, 69, 0.4) 0%,
        rgba(26, 42, 58, 0.7) 100%
    );
    position: relative;
}

.news-preview .news-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(252, 147, 3, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.news-preview:hover .news-header::before {
    left: 100%;
}

/* News Content Improvements */
.news-preview .news-meta .text-light,
.news-preview .news-meta span,
.news-preview .text-light,
.news-preview .text-muted,
.news-preview .news-author {
    color: #ffffff !important;
}

.news-preview .news-icon {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.news-preview:hover .news-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Breaking News Animation */
.tab-link.active[href*="breaking"] i {
    animation: pulse 2s infinite;
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    margin-top: 2rem;
}

.empty-icon {
    font-size: 4rem;
    color: #fc9303;
    margin-bottom: 1.5rem;
}

.empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.empty-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.empty-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Subscribe CTA */
.subscribe-cta {
    background: linear-gradient(
        135deg,
        rgba(252, 147, 3, 0.9) 0%,
        rgba(230, 126, 0, 0.9) 100%
    );
    backdrop-filter: blur(20px);
    border: 1px solid rgba(252, 147, 3, 0.3);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.subscribe-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.cta-icon {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-button {
    background: white;
    color: #fc9303;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.125rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: #e67e00;
}

/* Topic Filters */
.topic-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.topic-filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.topic-filter-btn:hover {
    background: rgba(252, 147, 3, 0.9);
    color: #111111;
    transform: translateY(-2px);
    border-color: #fc9303;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.modern-pagination .page-link {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1rem;
    margin: 0;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 44px;
    text-align: center;
}

.modern-pagination .page-link:hover,
.modern-pagination .page-item.active .page-link {
    background: var(--accent-gradient);
    color: #111111;
    border-color: #fc9303;
    transform: translateY(-2px);
}

.modern-pagination ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 0.5rem;
}

.modern-pagination li {
    display: flex;
}

/* Premium Pagination */
.premium-pagination .page-item {
    margin: 0 0.25rem;
}

.premium-pagination .page-link {
    background: linear-gradient(
        145deg,
        rgba(69, 69, 69, 0.2) 0%,
        rgba(26, 42, 58, 0.5) 100%
    );
    border: 1px solid rgba(252, 147, 3, 0.2);
    color: var(--text-secondary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s var(--ease-in-out);
}

.premium-pagination .page-link:hover {
    background: var(--accent-gradient);
    color: #111111;
    border-color: var(--bs-primary);
    transform: translateY(-2px);
}

.premium-pagination .page-item.active .page-link {
    background: var(--accent-gradient);
    color: #111111;
    border-color: var(--bs-primary);
}

/* ============================================
   FOOTER & SOCIAL LINKS
   ============================================ */

.footer {
    background: linear-gradient(145deg, var(--gray-darkest) 0%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(252, 147, 3, 0.2);
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(252, 147, 3, 0) 0%,
        rgba(252, 147, 3, 0.5) 50%,
        rgba(252, 147, 3, 0) 100%
    );
}

/* Social Links System */
.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--timing-medium) var(--ease-bounce);
    margin-right: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.social-links a:hover {
    background: var(--accent-gradient);
    color: #111111;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 8px 20px rgba(252, 147, 3, 0.5);
    border-color: var(--accent-orange-light);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s var(--ease-in-out);
    display: inline-block;
    position: relative;
    padding-left: 0;
    margin-bottom: 0.75rem;
}

.footer-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--bs-primary);
    transition: all var(--timing-medium) var(--ease-in-out);
}

.footer-link:hover {
    color: var(--bs-primary);
    transform: translateX(5px);
}

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

/* Quick Navigation Items */
.quick-nav-item {
    transition: all 0.3s var(--ease-in-out);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.quick-nav-item:hover {
    background-color: rgba(252, 147, 3, 0.05);
    transform: translateX(5px);
}

.quick-nav-item:hover .feature-icon {
    transform: scale(1.1);
    background-color: rgba(252, 147, 3, 0.2);
}

.quick-nav-item:hover .fa-chevron-right {
    transform: translateX(5px);
    color: var(--accent-orange-light);
}

/* Alert Items */
.alert-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.alert-item:hover {
    transform: translateX(5px);
    background-opacity: 0.2 !important;
}

.alert-item .text-white,
.alert-item .text-light {
    color: #ffffff !important;
}

/* Market Impact Display */
.market-impact {
    background: rgba(252, 147, 3, 0.08);
    border-left: 4px solid var(--bs-primary);
    border-radius: 0 12px 12px 0;
    padding: 1rem 1.5rem;
}

/* Sticky Sidebar */
@media (min-width: 992px) {
    .sticky-lg-top {
        position: sticky;
        z-index: 10;
    }
}

/* eRoom/Webinar Content Centering */
.webinar-join * {
    text-align: center !important;
}

.webinar-join .stm-zoom-conference,
.webinar-join .zoom-conference-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ============================================
   RESPONSIVE DESIGN & MEDIA QUERIES
   ============================================ */

/* Large Screens (1200px+) */
@media (min-width: 1200px) {
    .hero-content {
        padding: 120px 0 80px 0;
    }

    .market-cards {
        padding: 3rem 1rem 2rem 1rem;
    }
}

/* Medium Screens (992px - 1199px) */
@media (max-width: 1199.98px) {
    .typed-text {
        font-size: 2.8rem;
    }

    .typed-text-container {
        min-height: 100px;
        height: 100px;
    }

    .chart-container {
        height: 350px;
        max-height: 350px;
    }

    .chart-wrapper {
        height: 290px;
        max-height: 290px;
    }

    .chart-container canvas {
        max-height: 250px !important;
        height: 250px !important;
    }
}

/* Small Screens (768px - 991px) */
@media (max-width: 991.98px) {
    .typed-text {
        font-size: 2.2rem;
    }

    .typed-text-container {
        min-height: 80px;
        height: 80px;
        display: block;
        justify-content: center;
    }

    .market-cards {
        position: relative;
        margin-top: 2rem;
    }

    .hero-content {
        text-align: center;
        padding: 80px 20px 40px 20px;
    }

    .d-flex.flex-wrap {
        flex-direction: column;
        align-items: center;
    }

    .glass-panel {
        padding: 2rem 1.5rem;
    }

    #nasdaq-card,
    #sp500-card,
    #dow-card,
    #yield-card,
    #nvda-card,
    #aapl-card {
        margin: 0 !important;
        min-width: 150px;
        padding: 0.75rem;
        animation: float 8s ease-in-out infinite;
    }

    .market-cards {
        padding: 2rem 0.5rem 1rem 0.5rem;
        overflow: visible;
    }

    .market-card {
        min-width: 150px;
        max-width: 100%;
        font-size: 0.9rem;
    }

    .market-card h4 {
        font-size: 1.1rem;
    }

    /* Webinar Cards Grid Responsive */
    .webinar-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .webinar-filter-tabs {
        border-radius: 16px;
    }

    .webinar-nav-link {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .section-header {
        padding: 1.5rem;
        border-radius: 16px;
    }

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

    .subscribe-cta {
        padding: 2rem;
        border-radius: 20px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .topic-filters {
        flex-direction: column;
        align-items: center;
    }

    .webinar-card-layout {
        flex-direction: column;
    }

    .webinar-date-calendar {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: flex-start;
    }
}

/* Extra Small Screens (576px - 767px) */
@media (max-width: 767.98px) {
    .typed-text {
        font-size: 1.8rem;
    }

    .typed-text-container {
        min-height: 70px;
        height: 70px;
        display: block;
    }

    .btn-premium,
    .btn-outline-light {
        width: 100%;
        margin-bottom: 0.75rem;
    }

    .chart-container {
        height: 320px;
        max-height: 320px;
        margin-bottom: 2rem;
    }

    .chart-wrapper {
        height: 260px;
        max-height: 260px;
    }

    .chart-container canvas {
        max-height: 220px !important;
        height: 220px !important;
    }

    /* Mobile Recording Box Fix */
    .webinar-recording-section .premium-card,
    .recording-container,
    .video-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 2rem 0 !important;
    }

    .webinar-recording-section .container > .row > .col-lg-8,
    .webinar-recording-section .container > .row > .col-lg-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    /* Newsletter & News Responsive */

    .newsletter-tabs {
        justify-content: center;
    }

    .newsletter-tabs .tab-link {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .news-tabs {
        justify-content: center;
        flex-wrap: wrap;
    }

    .news-tabs .tab-link {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        margin: 0.25rem;
    }

    .empty-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .search-suggestions {
        max-height: 200px;
    }

    .suggestion-item {
        padding: 0.5rem 0.75rem;
    }

    .suggestion-title {
        font-size: 0.85rem;
    }

    .suggestion-date {
        font-size: 0.75rem;
    }

    .newsletter-actions-bar .row {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-actions-bar .col-md-6:first-child {
        margin-bottom: 1rem;
    }

    .newsletter-share {
        justify-content: center !important;
        margin-top: 1rem;
    }

    .alert-item {
        margin-bottom: 0.75rem;
    }

    .newsletter-preview .text-light,
    .newsletter-preview .text-muted,
    .newsletter-preview .newsletter-excerpt,
    .news-preview .text-light,
    .news-preview .text-muted,
    .news-preview .news-author,
    .news-preview .news-excerpt {
        color: #ffffff !important;
    }
}

/* Very Small Screens (575px and below) */
@media (max-width: 575.98px) {
    .typed-text {
        font-size: 1.5rem;
    }

    .typed-text-container {
        min-height: 60px;
        height: 60px;
        display: block;
    }

    .webinar-filter-tabs {
        border-radius: 12px;
    }

    .webinar-nav-link {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .modern-webinar-card {
        border-radius: 20px;
    }

    .webinar-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .webinar-hero {
        padding: 15rem 0;
    }

    .news-tabs .tab-link {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }

    .news-preview .news-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .news-preview .news-meta > div {
        margin: 0.25rem;
    }

    .news-preview .news-meta .text-light,
    .news-preview .news-meta .text-muted,
    .news-preview .news-meta span,
    .news-preview .news-author,
    .newsletter-preview .newsletter-meta .text-light,
    .newsletter-preview .newsletter-meta span {
        color: #ffffff !important;
    }

    .btn-sm {
        font-size: 0.813rem;
        padding: 0.4rem 0.8rem;
    }

    .newsletter-actions-bar .row {
        gap: 1rem;
    }

    .share-links {
        flex-wrap: wrap;
    }
}

/* Newsletter Preview Responsive Enhancements */
@media (max-width: 768px) {
    .newsletter-preview {
        margin-bottom: 2rem;
    }

    .newsletter-actions-bar .row {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-share {
        justify-content: center !important;
        margin-top: 1rem;
    }
}

/* Archive Page Animation Staggering */
.news-preview {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease forwards;
}

.news-preview:nth-child(1) {
    animation-delay: 0.1s;
}
.news-preview:nth-child(2) {
    animation-delay: 0.2s;
}
.news-preview:nth-child(3) {
    animation-delay: 0.3s;
}
.news-preview:nth-child(4) {
    animation-delay: 0.4s;
}
.news-preview:nth-child(5) {
    animation-delay: 0.5s;
}

/* ============================================
   SCROLLBAR & BROWSER SPECIFIC STYLES
   ============================================ */

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    background-color: rgba(17, 17, 17, 0.8);
}

::-webkit-scrollbar-track {
    background-color: rgba(45, 63, 80, 0.2);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gradient);
    border-radius: 10px;
    border: 3px solid rgba(17, 17, 17, 0.8);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        to bottom,
        var(--accent-orange-light),
        var(--bs-primary)
    );
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--bs-primary) rgba(45, 63, 80, 0.2);
}

/* Enhanced Premium Card Effects */
.premium-card.news-preview::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--bs-primary),
        #e67e00,
        var(--bs-primary)
    );
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.premium-card.news-preview:hover::before {
    transform: scaleX(1);
}

/* Safari Specific Fixes */
@supports (-webkit-appearance: none) {
    .form-control {
        -webkit-appearance: none;
    }

    .btn {
        -webkit-appearance: none;
    }
}

/* iOS Specific Touch Improvements */
@supports (-webkit-touch-callout: none) {
    .btn,
    .card,
    .premium-card {
        -webkit-tap-highlight-color: rgba(252, 147, 3, 0.3);
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-section {
        background-image:
            linear-gradient(
                135deg,
                rgba(0, 0, 0, 0.85) 0%,
                rgba(26, 42, 58, 0.85) 100%
            ),
            url("/wp-content/uploads/2025/06/alpha-hero@2x.jpg");
    }
}

/* Dark Mode Support (if system preference) */
@media (prefers-color-scheme: dark) {
    :root {
        --bs-body-bg: #0a0a0a;
        --gray-darkest: #1a1a1a;
    }
}

/* Focus Visible Support */
@supports selector(:focus-visible) {
    *:focus {
        outline: none;
        box-shadow: none;
    }

    *:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px rgba(252, 147, 3, 0.5);
    }
}

/* ============================================
   UTILITY CLASSES & HELPER STYLES
   ============================================ */

/* Display Utilities */
.d-none {
    display: none !important;
}
.d-block {
    display: block !important;
}
.d-inline {
    display: inline !important;
}
.d-inline-block {
    display: inline-block !important;
}
.d-flex {
    display: flex !important;
}
.d-grid {
    display: grid !important;
}

/* Responsive Display Utilities */
@media (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }
    .d-sm-block {
        display: block !important;
    }
    .d-sm-inline {
        display: inline !important;
    }
    .d-sm-inline-block {
        display: inline-block !important;
    }
    .d-sm-flex {
        display: flex !important;
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }
    .d-md-block {
        display: block !important;
    }
    .d-md-inline {
        display: inline !important;
    }
    .d-md-inline-block {
        display: inline-block !important;
    }
    .d-md-flex {
        display: flex !important;
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }
    .d-lg-block {
        display: block !important;
    }
    .d-lg-inline {
        display: inline !important;
    }
    .d-lg-inline-block {
        display: inline-block !important;
    }
    .d-lg-flex {
        display: flex !important;
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important;
    }
    .d-xl-block {
        display: block !important;
    }
    .d-xl-inline {
        display: inline !important;
    }
    .d-xl-inline-block {
        display: inline-block !important;
    }
    .d-xl-flex {
        display: flex !important;
    }
}

/* Flexbox Utilities */
.flex-row {
    flex-direction: row !important;
}
.flex-column {
    flex-direction: column !important;
}
.flex-wrap {
    flex-wrap: wrap !important;
}
.flex-nowrap {
    flex-wrap: nowrap !important;
}
.justify-content-start {
    justify-content: flex-start !important;
}
.justify-content-center {
    justify-content: center !important;
}
.justify-content-end {
    justify-content: flex-end !important;
}
.justify-content-between {
    justify-content: space-between !important;
}
.align-items-start {
    align-items: flex-start !important;
}
.align-items-center {
    align-items: center !important;
}
.align-items-end {
    align-items: flex-end !important;
}

/* Spacing Utilities */
.m-0 {
    margin: 0 !important;
}
.m-1 {
    margin: 0.25rem !important;
}
.m-2 {
    margin: 0.5rem !important;
}
.m-3 {
    margin: 1rem !important;
}
.m-4 {
    margin: 1.5rem !important;
}
.m-5 {
    margin: 3rem !important;
}

.mt-0 {
    margin-top: 0 !important;
}
.mt-1 {
    margin-top: 0.25rem !important;
}
.mt-2 {
    margin-top: 0.5rem !important;
}
.mt-3 {
    margin-top: 1rem !important;
}
.mt-4 {
    margin-top: 1.5rem !important;
}
.mt-5 {
    margin-top: 3rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}
.mb-1 {
    margin-bottom: 0.25rem !important;
}
.mb-2 {
    margin-bottom: 0.5rem !important;
}
.mb-3 {
    margin-bottom: 1rem !important;
}
.mb-4 {
    margin-bottom: 1.5rem !important;
}
.mb-5 {
    margin-bottom: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}
.p-1 {
    padding: 0.25rem !important;
}
.p-2 {
    padding: 0.5rem !important;
}
.p-3 {
    padding: 1rem !important;
}
.p-4 {
    padding: 1.5rem !important;
}
.p-5 {
    padding: 3rem !important;
}

/* Text Utilities */
.text-left {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}
.text-justify {
    text-align: justify !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}
.text-lowercase {
    text-transform: lowercase !important;
}
.text-capitalize {
    text-transform: capitalize !important;
}

.fw-light {
    font-weight: 300 !important;
}
.fw-normal {
    font-weight: 400 !important;
}
.fw-medium {
    font-weight: 500 !important;
}
.fw-semibold {
    font-weight: 600 !important;
}
.fw-bold {
    font-weight: 700 !important;
}

.fs-1 {
    font-size: var(--font-size-2xl) !important;
}
.fs-2 {
    font-size: var(--font-size-xl) !important;
}
.fs-3 {
    font-size: var(--font-size-lg) !important;
}
.fs-4 {
    font-size: var(--font-size-md) !important;
}
.fs-5 {
    font-size: var(--font-size-base) !important;
}
.fs-6 {
    font-size: var(--font-size-sm) !important;
}

/* Color Utilities */
.text-white {
    color: #ffffff !important;
}
.text-primary {
    color: var(--bs-primary) !important;
}
.text-secondary {
    color: var(--text-secondary) !important;
}
.text-muted {
    color: var(--text-muted) !important;
}
.text-light {
    color: var(--text-light) !important;
}
.text-success {
    color: var(--bs-success) !important;
}
.text-warning {
    color: var(--bs-warning) !important;
}
.text-danger {
    color: var(--bs-danger) !important;
}
.text-info {
    color: var(--bs-info) !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}
.bg-secondary {
    background-color: var(--primary-gray) !important;
}
.bg-dark {
    background-color: var(--gray-darkest) !important;
}
.bg-light {
    background-color: var(--gray-light) !important;
}
.bg-transparent {
    background-color: transparent !important;
}

/* Border Utilities */
.border {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.border-0 {
    border: 0 !important;
}
.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.border-start {
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.border-end {
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.rounded {
    border-radius: 0.375rem !important;
}
.rounded-0 {
    border-radius: 0 !important;
}
.rounded-circle {
    border-radius: 50% !important;
}
.rounded-pill {
    border-radius: 50rem !important;
}

/* Position Utilities */
.position-static {
    position: static !important;
}
.position-relative {
    position: relative !important;
}
.position-absolute {
    position: absolute !important;
}
.position-fixed {
    position: fixed !important;
}
.position-sticky {
    position: sticky !important;
}

/* Width & Height Utilities */
.w-25 {
    width: 25% !important;
}
.w-50 {
    width: 50% !important;
}
.w-75 {
    width: 75% !important;
}
.w-100 {
    width: 100% !important;
}
.w-auto {
    width: auto !important;
}

.h-25 {
    height: 25% !important;
}
.h-50 {
    height: 50% !important;
}
.h-75 {
    height: 75% !important;
}
.h-100 {
    height: 100% !important;
}
.h-auto {
    height: auto !important;
}

/* Shadow Utilities */
.shadow-sm {
    box-shadow: var(--elevation-1) !important;
}
.shadow {
    box-shadow: var(--elevation-2) !important;
}
.shadow-lg {
    box-shadow: var(--elevation-3) !important;
}
.shadow-none {
    box-shadow: none !important;
}

/* Overflow Utilities */
.overflow-auto {
    overflow: auto !important;
}
.overflow-hidden {
    overflow: hidden !important;
}
.overflow-visible {
    overflow: visible !important;
}
.overflow-scroll {
    overflow: scroll !important;
}

/* Visibility Utilities */
.visible {
    visibility: visible !important;
}
.invisible {
    visibility: hidden !important;
}

/* Opacity Utilities */
.opacity-0 {
    opacity: 0 !important;
}
.opacity-25 {
    opacity: 0.25 !important;
}
.opacity-50 {
    opacity: 0.5 !important;
}
.opacity-75 {
    opacity: 0.75 !important;
}
.opacity-100 {
    opacity: 1 !important;
}

/* Z-index Utilities */
.z-0 {
    z-index: 0 !important;
}
.z-1 {
    z-index: 1 !important;
}
.z-2 {
    z-index: 2 !important;
}
.z-3 {
    z-index: 3 !important;
}

/* Hover Utilities */
.hover-primary:hover {
    color: var(--bs-primary) !important;
}
.hover-secondary:hover {
    color: var(--text-secondary) !important;
}
.hover-white:hover {
    color: #ffffff !important;
}

/* Animation Utilities */
.animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}
.animate-slide-up {
    animation: slideInUp 0.6s ease forwards;
}
.animate-pulse {
    animation: pulse 2s infinite;
}

/* Custom Utility Classes */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glow-effect {
    box-shadow: 0 0 20px rgba(252, 147, 3, 0.3);
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.cursor-pointer {
    cursor: pointer !important;
}
.cursor-default {
    cursor: default !important;
}
.cursor-not-allowed {
    cursor: not-allowed !important;
}

/* Skip to Content (Accessibility) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--bs-primary);
    color: var(--bs-body-bg);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    font-weight: bold;
}

.skip-link:focus {
    top: 6px;
}

/* Print Utilities */
.d-print-none {
    display: none !important;
}
.d-print-block {
    display: block !important;
}
.d-print-inline {
    display: inline !important;
}
.d-print-inline-block {
    display: inline-block !important;
}

/* Screen Reader Only */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.sr-only-focusable:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: inherit !important;
    margin: inherit !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
}

/* ============================================
   PRINT STYLES & ACCESSIBILITY
   ============================================ */

@media print {
    /* Hide non-essential elements */
    .progress-indicator,
    .mobile-menu,
    .mobile-menu-overlay,
    .navbar,
    .footer,
    .newsletter-social-sharing,
    .newsletter-actions-bar,
    .quick-nav-item,
    .pagination-wrapper,
    .subscribe-cta,
    .webinar-filter-tabs,
    .news-tabs,
    .btn,
    .social-links {
        display: none !important;
    }

    /* Print-friendly styling */
    body {
        background: #fff !important;
        color: #000 !important;
        font-size: 12pt;
        line-height: 1.5;
        padding: 0 !important;
    }

    .premium-card,
    .newsletter-preview,
    .news-preview {
        background: white !important;
        color: black !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
        page-break-inside: avoid;
        margin-bottom: 1rem !important;
    }

    .text-white,
    .text-light,
    .text-muted,
    .text-secondary {
        color: black !important;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        color: black !important;
        text-shadow: none !important;
        page-break-after: avoid;
    }

    a {
        color: #0066cc !important;
        text-decoration: underline !important;
    }

    /* Page breaks */
    .page-break-before {
        page-break-before: always;
    }

    .page-break-after {
        page-break-after: always;
    }

    .no-page-break {
        page-break-inside: avoid;
    }

    /* Print-specific margins */
    @page {
        margin: 2cm;
    }

    .container {
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
    }

    .row {
        margin: 0 !important;
    }

    .col,
    [class*="col-"] {
        width: 100% !important;
        padding: 0 !important;
    }
}

/* ============================================
   FINAL PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* Optimize heavy animations for performance */
.premium-card,
.market-card,
.feature-box {
    will-change: transform;
}

.premium-card:not(:hover),
.market-card:not(:hover),
.feature-box:not(:hover) {
    will-change: auto;
}

/* GPU acceleration for smooth animations */
.btn-premium,
.magnetic-button,
.micro-interaction {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Optimize images */
img {
    max-width: 100%;
    height: auto;
}

/* Content loading optimization */
.newsletter-content-wrapper,
.news-content-wrapper {
    contain: layout style paint;
}

/* ============================================
   BROWSER COMPATIBILITY FALLBACKS
   ============================================ */

/* Fallback for older browsers without CSS Grid */
@supports not (display: grid) {
    .webinar-cards-grid {
        display: flex;
        flex-wrap: wrap;
    }

    .modern-webinar-card {
        flex: 1 1 300px;
        margin: 1rem;
    }
}

/* Fallback for backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
    .glass-panel,
    .mobile-menu,
    .webinar-filter-tabs {
        background: rgba(26, 42, 58, 0.9);
    }
}

/* ============================================
   FINAL CLEANUP & OVERRIDES
   ============================================ */

/* Ensure all text is properly colored */
.newsletter-preview .text-light,
.newsletter-preview .text-muted,
.newsletter-preview .newsletter-excerpt,
.newsletter-preview .key-insights,
.newsletter-preview .key-insights .text-light,
.news-preview .text-light,
.news-preview .text-muted,
.news-preview .news-excerpt,
.news-preview .news-author,
.news-preview .news-author .text-light,
.news-preview .news-author .text-muted,
.sidebar-widget .text-light,
.sidebar-widget .text-muted,
.premium-card .text-light,
.premium-card .text-muted,
.premium-card blockquote,
.premium-card blockquote p {
    color: #ffffff !important;
}

/* Ensure proper spacing and no conflicts */
.newsletter-preview,
.news-preview {
    margin-bottom: 2rem;
}

/* Final animation performance optimization */
@media (prefers-reduced-motion: reduce) {
    .particle {
        display: none;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Ensure no blurry text on transformations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hide progress bar when printing */
@media print {
    .progress-indicator {
        display: none !important;
    }
}

/* Final mobile optimizations */
@media (max-width: 576px) {
    .premium-card {
        margin-bottom: 1.5rem;
    }

    .btn {
        min-height: 44px; /* Touch target size */
    }

    .form-control {
        min-height: 44px; /* Touch target size */
    }
}

/* End of stylesheet */
