/* ============================================
   GAMING SOLUTION - MARKETING GLOBAL STYLES
   Premium Red/Black Gaming Aesthetic
   ============================================ */

/* ===== CSS VARIABLES ===== */
/* Custom Cursor */
#custom-cursor {
    width: 30px;
    height: 30px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease-out, width 0.3s, height 0.3s, background 0.3s;
    transform: translate(-50%, -50%);
    display: none;
}

#cursor-dot {
    width: 6px;
    height: 6px;
    background: #ff0000;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    display: none;
}

@media (pointer: fine) {

    #custom-cursor,
    #cursor-dot {
        display: block;
    }
}

/* ===== ELITE PREMIUM UI ===== */
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff0000, #500000);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff0000;
}

:root {
    /* Base Colors (Theme Independent) */
    --primary-black: #000000;
    --dark-bg: #0a0a0a;
    --dark-bg-elevated: #1a1a1a;
    --dark-bg-card: #151515;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --text-muted: #888888;
    --text-dim: rgba(255, 255, 255, 0.3);

    /* DEFAULT THEME - Elite Red */
    --accent-color: #ff0000;
    --accent-dark: #cc0000;
    --accent-light: #ff3333;
    --accent-glow: rgba(255, 0, 0, 0.5);
    --accent-gradient: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    --accent-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

/* Theme Variant: Cyber Blue */
[data-theme="blue"] {
    --accent-color: #0071e3;
    --accent-dark: #0056b3;
    --accent-light: #4096ee;
    --accent-glow: rgba(0, 113, 227, 0.5);
    --accent-gradient: linear-gradient(135deg, #0071e3 0%, #0056b3 100%);
    --accent-shadow: 0 0 20px rgba(0, 113, 227, 0.4);
}

/* Theme Variant: Emerald Green */
[data-theme="green"] {
    --accent-color: #00d084;
    --accent-dark: #009e60;
    --accent-light: #33dd9e;
    --accent-glow: rgba(0, 208, 132, 0.5);
    --accent-gradient: linear-gradient(135deg, #00d084 0%, #009e60 100%);
    --accent-shadow: 0 0 20px rgba(0, 208, 132, 0.4);
}

/* Theme Variant: Royal Gold */
[data-theme="gold"] {
    --accent-color: #ffb800;
    --accent-dark: #d49a00;
    --accent-light: #ffc933;
    --accent-glow: rgba(255, 184, 0, 0.5);
    --accent-gradient: linear-gradient(135deg, #ffb800 0%, #d49a00 100%);
    --accent-shadow: 0 0 20px rgba(255, 184, 0, 0.4);
}

/* Backwards Compatibility Aliases */
:root {
    --primary-red: var(--accent-color);
    --primary-red-dark: var(--accent-dark);
    --primary-red-light: var(--accent-light);
    --gradient-red: var(--accent-gradient);
    --shadow-red: var(--accent-shadow);
}

:root {
    /* Text Colors */
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --text-muted: #888888;
    --text-dark: #333333;

    /* Status Colors */
    --success-green: #00d084;
    --warning-orange: #ff6900;
    --info-blue: #6083FF;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'DM Sans', sans-serif;
    --font-accent: 'Roboto', sans-serif;
}

/* Elite Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

.glass-card:hover {
    border-color: rgba(255, 0, 0, 0.3) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

:root {
    /* Font Sizes */
    --h1-size: 64px;
    --h2-size: 48px;
    --h3-size: 32px;
    --h4-size: 24px;
    --h5-size: 20px;
    --body-size: 16px;
    --small-size: 14px;
    --tiny-size: 12px;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-xxl: 120px;
    --spacing-huge: 160px;

    /* Layout */
    --container-max: 1320px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-round: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-red: 0 0 20px rgba(255, 0, 0, 0.5);
    --shadow-purple: 0 0 20px rgba(96, 131, 255, 0.4);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: var(--body-size);
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--text-white);
    letter-spacing: -0.01em;
}

h1 {
    font-size: var(--h1-size);
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--h2-size);
}

h3 {
    font-size: var(--h3-size);
}

h4 {
    font-size: var(--h4-size);
}

h5 {
    font-size: var(--h5-size);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-gray);
    line-height: 1.8;
}

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-red-light);
    text-decoration: none;
}

/* ===== LAYOUT HELPERS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xxl) 0;
}

.section-dark {
    background-color: var(--dark-bg);
}

.section-elevated {
    background-color: var(--dark-bg-elevated);
}

/* ===== GRID SYSTEM ===== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(var(--spacing-md) * -1);
}

.col {
    flex: 1;
    padding: 0 var(--spacing-md);
}

.col-2 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 var(--spacing-md);
}

.col-3 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 var(--spacing-md);
}

.col-4 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 var(--spacing-md);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: var(--body-size);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-purple);
    color: var(--text-white);
    box-shadow: var(--shadow-purple);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(96, 131, 255, 0.6);
}

.btn-red {
    background: var(--gradient-red);
    color: var(--text-white);
    box-shadow: var(--shadow-red);
}

.btn-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.7);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--primary-red);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

/* ===== CARDS ===== */
.card {
    background: var(--dark-bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* ===== BADGES ===== */
.badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: var(--small-size);
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-red {
    background: var(--primary-red);
    color: var(--text-white);
}

.badge-success {
    background: var(--success-green);
    color: var(--text-white);
}

.badge-purple {
    background: var(--gradient-purple);
    color: var(--text-white);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Fade In Animation Class */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

/* Blink Animation */
.blink {
    animation: blink 1.5s infinite;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-red {
    color: var(--primary-red);
}

.text-white {
    color: var(--text-white);
}

.text-gray {
    color: var(--text-gray);
}

.text-muted {
    color: var(--text-muted);
}

.bg-dark {
    background-color: var(--dark-bg);
}

.bg-elevated {
    background-color: var(--dark-bg-elevated);
}

.mt-xs {
    margin-top: var(--spacing-xs);
}

.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mt-xl {
    margin-top: var(--spacing-xl);
}

.mb-xs {
    margin-bottom: var(--spacing-xs);
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mb-xl {
    margin-bottom: var(--spacing-xl);
}

.p-xs {
    padding: var(--spacing-xs);
}

.p-sm {
    padding: var(--spacing-sm);
}

.p-md {
    padding: var(--spacing-md);
}

.p-lg {
    padding: var(--spacing-lg);
}

.p-xl {
    padding: var(--spacing-xl);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    :root {
        --h1-size: 36px;
        --h2-size: 28px;
        --h3-size: 24px;
        --h4-size: 20px;
    }

    .col-2,
    .col-3,
    .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    :root {
        --h1-size: 32px;
        --h2-size: 24px;
        --h3-size: 20px;
        --spacing-xl: 32px;
        --spacing-xxl: 48px;
    }

    .section {
        padding: var(--spacing-xl) 0;
    }
}

@media (max-width: 480px) {
    :root {
        --h1-size: 28px;
        --h2-size: 22px;
        --h3-size: 18px;
        --spacing-md: 16px;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .btn {
        width: 100%;
        /* Strict mobile: full width buttons often look better */
        margin-bottom: var(--spacing-sm);
        padding: 14px 20px;
    }

    .hero-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
}

@media (max-width: 768px) {
    .marketing-nav .container {
        padding: 0 20px;
    }

    .nav-logo img {
        height: 50px;
    }

    .nav-logo span {
        font-size: 18px;
    }
}

/* Stricter Desktop View */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
}

/* ===== PLATFORM SEPARATION UTILITIES ===== */
/* Desktop Only (Hidden on Tablet/Mobile) */
@media (min-width: 993px) {
    .d-mobile-only {
        display: none !important;
    }
}

/* Mobile Only (Hidden on Desktop) */
@media (max-width: 992px) {
    .d-desktop-only {
        display: none !important;
    }
}

/* ===== MOBILE MENU (ADDED) ===== */
/* Premium Interactive States */
.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
    filter: brightness(1.1);
}

.btn-red:hover {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.nav-links a:hover {
    color: var(--primary-red);
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}

.card:hover,
.pricing-card:hover {
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 0, 0, 0.1);
}

/* Standardized Branding */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.nav-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-logo span {
    font-weight: 700;
    font-size: 20px;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

/* Responsive Logo Text: Hide on smaller desktops to prevent menu wrap */
@media (min-width: 993px) and (max-width: 1200px) {
    .nav-logo span {
        display: none;
    }
}

/* Mobile Menu Toggle & Feed */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* "The Feed" - Interaction Feedback */
.mobile-menu-toggle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-red);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    z-index: -1;
}

.mobile-menu-toggle:active::after {
    opacity: 0.2;
    transform: scale(1.2);
}

.mobile-menu-toggle.active {
    color: var(--primary-red);
    background: rgba(255, 0, 0, 0.1);
}

.mobile-menu-toggle.active i::before {
    content: "\f00d";
    /* FontAwesome Xmark */
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

.marketing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marketing-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    /* Reduced from default */
    max-width: 100%;
    /* Ensure it uses full width if needed */
}

.marketing-nav.scrolled {
    padding: 16px 0;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(255, 0, 0, 0.1);
}

/* Desktop: Show nav-links, hide mobile toggle */
@media (min-width: 993px) {
    .nav-links {
        display: flex !important;
        gap: 15px;
        align-items: center;
    }

    .nav-links a {
        font-size: 14px;
        white-space: nowrap;
    }

    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Mobile/Tablet: Hide nav-links, show mobile toggle */
@media (max-width: 992px) {
    .nav-links {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    .nav-logo img {
        height: 45px;
    }

    .nav-logo span {
        font-size: 16px;
    }
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.mobile-menu-links a {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }
}

/* ===== GLOBAL SCROLL NORMALIZATION (CONSOLIDATED) ===== */
html {
    scroll-behavior: auto !important;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Scroll Reveal Animations - Global & Optimized */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.visible,
.scroll-reveal.fade-in {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 1024px) {

    /* Stagger delay for cards on desktop only */
    .panel-card:nth-child(2) {
        transition-delay: 0.1s;
    }

    .panel-card:nth-child(3) {
        transition-delay: 0.2s;
    }

    .panel-card:nth-child(4) {
        transition-delay: 0.3s;
    }
}

/* ===== DYNAMIC OFFER RIBBON ===== */
.offer-ribbon {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #ff0000 0%, #d32f2f 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    color: white;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    overflow: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    max-width: var(--container-max);
    margin: 0 auto;
}

.ribbon-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.ribbon-text {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ribbon-timer {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 10px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ribbon-btn {
    background: white;
    color: #ff0000 !important;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    transition: 0.3s;
}

.ribbon-btn:hover {
    transform: scale(1.05);
    background: #f0f0f0;
}

@media (max-width: 768px) {
    .offer-ribbon {
        height: auto;
        padding: 5px 0;
    }

    .ribbon-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .ribbon-btn {
        display: none;
        /* Hide button on tiny mobile to save space */
    }

    body {
        padding-top: 60px !important;
    }
}

/* ===== MARKETING FOOTER STYLING ===== */
.marketing-footer {
    background: var(--dark-bg-elevated);
    padding: 64px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.marketing-footer .row {
    margin-bottom: 48px;
}

.footer-brand {
    margin-bottom: 24px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-title {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-links i {
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .marketing-footer {
        padding: 48px 0 24px;
    }

    .marketing-footer .col-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 32px;
    }

    .footer-title {
        font-size: 16px;
    }
}

/* =========================================
   SECURITY & TRUST ELITE
   ========================================= */
.trust-seal-container {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-red);
    color: white;
}

.trust-badge i {
    color: #00d084;
    /* Success Green */
    font-size: 16px;
}

.trust-badge.verified i {
    color: #0071e3;
    /* Verified Blue */
}

.trust-badge.security i {
    color: var(--primary-red);
}

/* ===== THEME SWITCHER UI ===== */
#theme-switcher {
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.theme-trigger {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--accent-shadow);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.theme-trigger:hover {
    transform: rotate(45deg) scale(1.1);
}

.theme-palette {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#theme-switcher.expanded .theme-palette {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.theme-option {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
    position: relative;
}

.theme-option.active {
    border-color: white;
    transform: scale(1.15);
}

.theme-option.red {
    background: #ff0000;
}

.theme-option.blue {
    background: #0071e3;
}

.theme-option.green {
    background: #00d084;
}

.theme-option.gold {
    background: #ffb800;
}

.theme-option:hover {
    transform: scale(1.2);
}

@keyframes themePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.theme-trigger.pulse {
    animation: themePulse 0.5s ease;
}

@media (max-width: 768px) {
    #theme-switcher {
        right: 20px;
        bottom: 90px;
    }

    .theme-trigger {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* =========================================
   LIVE PULSE TICKER (Global)
   ========================================= */
.live-ticker-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(255, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    animation: slideUpTicker 0.5s ease-out forwards 1s;
}

@keyframes slideUpTicker {
    to {
        transform: translateY(0);
    }
}

.ticker-content {
    display: flex;
    gap: 40px;
    font-family: 'Courier New', monospace;
    /* Tech vibe */
    font-size: 14px;
    color: #ccc;
    white-space: nowrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticker-label {
    color: var(--primary-red);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.ticker-value {
    color: white;
    font-weight: 600;
}

.live-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #00d084;
    border-radius: 50%;
    margin-right: 5px;
    box-shadow: 0 0 10px #00d084;
    animation: blink 1s infinite;
}

@media (max-width: 768px) {
    .live-ticker-bar {
        font-size: 12px;
        padding: 8px 0;
    }

    .ticker-content {
        gap: 20px;
        animation: marquee 20s linear infinite;
    }
}