/*
Theme Name: MSNR Gold Hero & Assets - Deep WordPress Edition
Theme URI: https://msuhasan.com/msnr-gold
Author: MSUHASAN
Author URI: https://msuhasan.com
Description: Next-gen editable trading course hero section WordPress theme featuring native WP Menus, Custom Logo Sizing Slider, live crosshair candlestick canvas engine, cyber-obsidian HUD styling, video modal popup, contact form, standalone course page, student dashboard video player, asset downloads vault, WooCommerce integration, FAQ accordion, promo banner, custom footer, and complete WP Customizer dashboard controls for all items.
Version: 3.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: msnr-gold
Tags: trading, forex, gold, course, dark-mode, custom-colors, animated, responsive-layout, ultra-luxury, cyber-hud
*/

/* ==========================================================================
   MSNR GOLD - MULTI-DESIGN SYSTEM (CYBER OBSIDIAN LUXURY EDITION)
   ========================================================================== */

:root {
  /* Core Obsidian & Gold Tokens */
  --bg-primary: #050B0E;         /* Futuristic Obsidian Void */
  --bg-secondary: #0A141A;       /* Inner section container */
  --accent-gold: #FFC72C;        /* Bright Cyber Gold */
  --accent-gold-hover: #E0AC1B;
  --accent-gold-glow: rgba(255, 199, 44, 0.45);
  --accent-gold-light: rgba(255, 199, 44, 0.12);

  --accent-cyan: #00F2FE;        /* Cyber HUD Cyan */
  --accent-emerald: #00E676;     /* Neon Green */
  --accent-rose: #FF2E93;        /* Neon Pink/Red */

  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8;
  --text-dark: #0B0F17;

  /* Candlestick Colors */
  --candle-bullish: #00E676;
  --candle-bearish: #FF2E93;
  --grid-line-color: rgba(255, 255, 255, 0.05);

  /* Card Glass Tokens */
  --card-bg: rgba(10, 20, 26, 0.85);
  --card-text: #FFFFFF;
  --card-subtext: #94A3B8;
  --card-border: rgba(255, 199, 44, 0.3);
  --card-shadow: 0 30px 80px -15px rgba(0, 0, 0, 0.9), 0 0 35px rgba(255, 199, 44, 0.18);

  --asset-card-bg: rgba(8, 16, 22, 0.8);
  --asset-card-border: rgba(255, 255, 255, 0.08);

  /* Fonts */
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Animation Timings */
  --transition-fast: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Theme Presets */
body.theme-emerald {
  --bg-primary: #011814;
  --accent-gold: #10B981;
  --accent-gold-hover: #059669;
  --accent-gold-glow: rgba(16, 185, 129, 0.45);
}
body.theme-cyber {
  --bg-primary: #070913;
  --accent-gold: #00F2FE;
  --accent-gold-hover: #4FACFE;
  --accent-gold-glow: rgba(0, 242, 254, 0.45);
  --card-border: rgba(0, 242, 254, 0.35);
}
body.theme-slate {
  --bg-primary: #0A0F1D;
  --accent-gold: #F59E0B;
  --accent-gold-glow: rgba(245, 158, 11, 0.4);
}
body.theme-light {
  --bg-primary: #F8FAFC;
  --bg-secondary: #F1F5F9;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --grid-line-color: rgba(0, 0, 0, 0.06);
  --card-bg: #FFFFFF;
  --card-text: #0F172A;
  --asset-card-bg: #FFFFFF;
  --asset-card-border: rgba(0, 0, 0, 0.08);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.5;
  transition: background-color var(--transition-normal);
}

/* GLOBAL CURSOR POINTER RULE FOR ALL BUTTONS AND INTERACTIVE LINKS */
a, button, input[type="button"], input[type="submit"],
.primary-btn, .secondary-btn, .header-cta-btn, .card-cta-btn, 
.asset-cta-btn, .editor-toggle-btn, .theme-toggle-btn, .preset-btn,
.btn-reset, .btn-export, .modal-copy-btn, .modal-close, .close-drawer-btn,
.nav-link, .brand-logo, .faq-question, .promo-cta-btn, .newsletter-submit-btn, .social-icon-btn,
.contact-submit-btn, .video-close-btn, .module-list-item, .dl-btn-link, .open-checkout-btn, .ecom-buy-link {
  cursor: pointer !important;
  user-select: none;
}

/* Background Canvas & Ambient Light Glows */
#bgCandleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 80% 20%, var(--accent-gold-light) 0%, transparent 45%),
    radial-gradient(circle at 10% 70%, rgba(0, 242, 254, 0.06) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(5, 11, 14, 0.3) 0%, var(--bg-primary) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Live Market Ticker Marquee Bar */
.ticker-bar {
  position: relative;
  z-index: 12;
  background: rgba(5, 11, 14, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.45rem 0;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  animation: marquee 35s linear infinite;
}

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

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #94A3B8;
}

.ticker-item .sym { color: #FFF; font-weight: 700; }
.ticker-item .up { color: var(--candle-bullish); font-weight: 700; }
.ticker-item .down { color: var(--candle-bearish); font-weight: 700; }

/* Inline Editable Focus Effect */
[contenteditable="true"] {
  outline: none;
  border-radius: 4px;
  transition: box-shadow var(--transition-fast), background-color var(--transition-fast);
}
[contenteditable="true"]:focus {
  background: rgba(255, 199, 44, 0.18);
  box-shadow: 0 0 0 2px var(--accent-gold);
  cursor: text !important;
}

/* Header & Navbar */
.navbar {
  position: relative;
  z-index: 10;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 11, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Sizing & Custom Logo Support */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo, .brand-logo img {
  max-height: 55px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.custom-logo-link:hover .custom-logo, .brand-logo:hover img {
  transform: scale(1.05);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--accent-gold-glow);
  border-radius: 8px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.brand-logo:hover .logo-icon {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 0 28px var(--accent-gold-glow);
}

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

.logo-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  line-height: 1.1;
}

.logo-subtitle {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--accent-gold);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-menu-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-menu-list li a, .nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-menu-list li a::after, .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-fast);
}

.nav-menu-list li a:hover::after, .nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-menu-list li a:hover, .nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.theme-toggle-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: rotate(20deg) scale(1.05);
}

.login-btn {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.login-btn:hover {
  color: var(--accent-gold);
}

.header-cta-btn {
  background: linear-gradient(135deg, #FFF5B8 0%, var(--accent-gold) 50%, var(--accent-gold-hover) 100%);
  color: #0B0E11;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px var(--accent-gold-glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
}

.header-cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px var(--accent-gold-glow);
}

/* Standalone Page Layout Helpers */
.course-page-wrapper, .dashboard-page-wrapper {
  position: relative;
  z-index: 5;
  padding-top: 3.5rem;
  padding-bottom: 6rem;
}

.center-hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.center-badge { margin-left: auto; margin-right: auto; }
.center-desc { margin-left: auto; margin-right: auto; text-align: center; }
.container-1280 { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* Hero Section Layout */
.hero-section {
  position: relative;
  z-index: 5;
  padding: 3.5rem 2rem 3rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: flex-start;
  margin-bottom: 3.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0.5rem;
}

.cohort-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 199, 44, 0.1);
  border: 1px solid rgba(255, 199, 44, 0.4);
  color: var(--accent-gold);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 0.45rem 1rem;
  border-radius: 30px;
  margin-bottom: 2rem;
  box-shadow: 0 0 18px rgba(255, 199, 44, 0.15);
  animation: pulse-border 3s infinite alternate;
}

@keyframes pulse-border {
  0% { border-color: rgba(255, 199, 44, 0.35); box-shadow: 0 0 10px rgba(255, 199, 44, 0.1); }
  100% { border-color: rgba(255, 199, 44, 0.8); box-shadow: 0 0 25px rgba(255, 199, 44, 0.35); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4.1rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.highlight-gold {
  color: var(--accent-gold);
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF2A3 30%, var(--accent-gold) 70%, #D9A608 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 15px var(--accent-gold-glow));
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  width: 100%;
  flex-wrap: wrap;
}

.primary-btn {
  background: linear-gradient(135deg, #FFF5B8 0%, var(--accent-gold) 50%, var(--accent-gold-hover) 100%);
  color: #0B0E11;
  text-decoration: none;
  border: none;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1.1rem 2.25rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition-fast);
  box-shadow: 0 10px 30px var(--accent-gold-glow);
  cursor: pointer !important;
}

.primary-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px var(--accent-gold-glow);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1rem;
  padding: 1.1rem 2rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
  cursor: pointer !important;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 199, 44, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 199, 44, 0.15);
}

.play-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  background: rgba(255, 199, 44, 0.15);
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.trust-item svg {
  color: var(--accent-gold);
}

/* Right Pricing Card */
.hero-card-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  perspective: 1000px;
}

.pricing-card {
  width: 100%;
  max-width: 480px;
  background: var(--card-bg);
  color: var(--card-text);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px) rotateX(1deg) rotateY(-1deg);
  box-shadow: 0 35px 80px -20px rgba(0, 0, 0, 0.8), 0 0 40px var(--accent-gold-glow);
}

.card-chart-header {
  position: relative;
  height: 230px;
  background: #070B10;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#cardCandleCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.chart-overlay-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(7, 11, 16, 0.82);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #A0AEC0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
}

.live-dot {
  width: 7px;
  height: 7px;
  background-color: var(--candle-bullish);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--candle-bullish);
  animation: pulse-dot 1.2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.8); }
}

.chart-stats-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(7, 11, 16, 0.88);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
}

.price-val { color: #FFFFFF; font-weight: 800; font-size: 0.95rem; }
.price-change.positive { color: var(--candle-bullish); font-weight: 700; font-size: 0.78rem; }

.card-body {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
}

.package-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--card-subtext);
  margin-bottom: 0.75rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin-bottom: 0.25rem;
}

.current-price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--card-text);
  line-height: 1;
}

.original-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: #94A3B8;
  text-decoration: line-through;
}

.savings-text {
  color: #0D9488;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 1.5rem;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-bottom: 2.25rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--card-text);
  line-height: 1.45;
}

.features-list svg {
  color: #0D9488;
  flex-shrink: 0;
  margin-top: 3px;
}

.card-cta-btn {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
  color: #0B0E11;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 1.1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all var(--transition-fast);
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 20px var(--accent-gold-glow);
  cursor: pointer !important;
  width: 100%;
}

.card-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--accent-gold-glow);
}

.card-footer-note {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #94A3B8;
}

/* STATS COUNTER BAR */
.stats-bar {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 5.5rem auto;
}

.stats-card-container, .stats-container {
  background: #061114 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 14px !important;
  padding: 1.4rem 2.5rem !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.5rem !important;
  width: 100% !important;
}

.stat-item {
  display: flex !important;
  align-items: center !important;
  flex-direction: row !important;
  gap: 1rem !important;
  flex: 1 !important;
}

.stat-icon {
  width: 48px !important;
  height: 48px !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--accent-gold) !important;
}

.stat-val {
  font-family: var(--font-heading) !important;
  font-size: 1.55rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
}

.stat-lbl {
  font-family: var(--font-mono) !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  color: var(--accent-gold) !important;
}

/* COURSE CURRICULUM SECTION */
.course-section {
  position: relative;
  z-index: 5;
  max-width: 1280px;
  margin: 0 auto 6rem auto;
  padding: 0 2rem;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.module-card {
  background: rgba(8, 18, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: all var(--transition-fast);
}

.module-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 199, 44, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 199, 44, 0.12);
}

.module-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  background: rgba(255, 199, 44, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  align-self: flex-start;
}

.gold-badge {
  background: var(--accent-gold);
  color: #0B0E11;
}

.module-card h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
}

.module-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.module-meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #94A3B8;
  margin-top: auto;
  padding-top: 0.5rem;
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* STUDENT DASHBOARD SECTION */
.dashboard-section {
  position: relative;
  z-index: 5;
  max-width: 1280px;
  margin: 0 auto 7rem auto;
  padding: 0 2rem;
}

.dashboard-container {
  background: rgba(6, 15, 20, 0.92);
  border: 1px solid rgba(255, 199, 44, 0.35);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 199, 44, 0.18);
  backdrop-filter: blur(16px);
}

.dashboard-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2.5rem;
}

.vip-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #0B0E11;
  background: var(--accent-gold);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.student-info h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
}

.student-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.progress-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 1.75rem;
  border-radius: 14px;
  min-width: 280px;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
  color: #CBD5E1;
  margin-bottom: 0.6rem;
}

.progress-info .percent { color: var(--accent-gold); }

.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #FFC72C, #00E676);
  border-radius: 4px;
}

.dashboard-main-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.video-player-container {
  background: #04090C;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.player-header {
  padding: 1.1rem 1.5rem;
  background: #081216;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.player-header h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
}

.hd-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  background: rgba(0, 230, 118, 0.15);
  color: #00E676;
  border: 1px solid rgba(0, 230, 118, 0.4);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.dashboard-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

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

.module-sidebar {
  background: #04090C;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
}

.module-sidebar h4 {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
}

.module-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-height: 420px;
  overflow-y: auto;
}

.module-list-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: all var(--transition-fast);
  cursor: pointer !important;
}

.module-list-item:hover, .module-list-item.active {
  background: rgba(255, 199, 44, 0.12);
  border-color: var(--accent-gold);
}

.mod-num {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mod-text {
  display: flex;
  flex-direction: column;
}

.mod-text strong { font-size: 0.88rem; color: #FFFFFF; }
.mod-text small { font-size: 0.75rem; color: #94A3B8; }

.downloads-vault {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.5rem;
}

.vault-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 1.75rem;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.download-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all var(--transition-fast);
}

.download-card:hover {
  border-color: var(--accent-gold);
  background: rgba(255, 199, 44, 0.08);
  transform: translateY(-4px);
}

.dl-icon { font-size: 2rem; flex-shrink: 0; }

.dl-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.dl-details h4 { font-size: 1.05rem; font-weight: 700; color: #FFFFFF; }
.dl-details p { font-size: 0.82rem; color: #94A3B8; line-height: 1.4; }

.dl-btn-link {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-gold);
  text-decoration: none;
  margin-top: 0.4rem;
  display: inline-block;
}

.dl-btn-link:hover { color: #FFFFFF; }

/* WHAT YOU GET SECTION */
.what-you-get-section {
  position: relative;
  z-index: 5;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 5rem 2rem;
}

.section-header { margin-bottom: 3.75rem; }

.section-tagline {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  display: inline-block;
  background: rgba(255, 199, 44, 0.08);
  border: 1px solid rgba(255, 199, 44, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.12;
  letter-spacing: -1.2px;
  margin-bottom: 1.25rem;
  max-width: 850px;
}

.section-subheading {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
}

.assets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.asset-card {
  background: var(--asset-card-bg);
  border: 1px solid var(--asset-card-border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.asset-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 199, 44, 0.45);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 199, 44, 0.18);
}

.asset-step-num {
  position: absolute;
  top: 1.75rem;
  right: 2rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.25);
}

.asset-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(255, 199, 44, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10B981;
  margin-bottom: 2rem;
}

.asset-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
}

.asset-desc {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  flex: 1;
}

.asset-pill {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--accent-gold);
}

.asset-card.highlight-card {
  background: linear-gradient(135deg, #05201C 0%, #0A332C 100%);
  border: 2px solid var(--accent-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px var(--accent-gold-glow);
}

.asset-card.highlight-card .asset-cta-btn {
  background: linear-gradient(135deg, #FFF5B8 0%, var(--accent-gold) 50%, var(--accent-gold-hover) 100%);
  color: #0B0E11;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1rem 1.6rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all var(--transition-fast);
  box-shadow: 0 6px 25px var(--accent-gold-glow);
  cursor: pointer !important;
  width: 100%;
}

/* PROMO BANNER SECTION */
.promo-section {
  position: relative;
  z-index: 5;
  max-width: 1280px;
  margin: 0 auto 6rem auto;
  padding: 0 2rem;
}

.promo-card {
  background: linear-gradient(135deg, #07191D 0%, #0E292E 100%);
  border: 1px solid rgba(255, 199, 44, 0.4);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 199, 44, 0.15);
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 199, 44, 0.12);
  border: 1px solid rgba(255, 199, 44, 0.35);
  color: var(--accent-gold);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
  margin-bottom: 1.2rem;
}

.promo-heading {
  font-family: var(--font-heading);
  font-size: 2.65rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
}

.promo-subheading { font-size: 1.05rem; color: var(--text-secondary); }

.promo-cta-btn {
  background: linear-gradient(135deg, #FFF5B8 0%, var(--accent-gold) 50%, var(--accent-gold-hover) 100%);
  color: #0B0E11;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 1.15rem 2.2rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition-fast);
  box-shadow: 0 10px 30px var(--accent-gold-glow);
  cursor: pointer !important;
}

/* FAQ SECTION */
.faq-section {
  position: relative;
  z-index: 5;
  max-width: 960px;
  margin: 0 auto 6rem auto;
  padding: 0 2rem;
}

.faq-header { text-align: center; margin-bottom: 3.5rem; }

.faq-tagline {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 0.75rem;
}

.faq-heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
}

.faq-list { display: flex; flex-direction: column; gap: 1.2rem; }

.faq-item {
  background: rgba(8, 18, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: rgba(255, 199, 44, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 199, 44, 0.12);
}

.faq-question {
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.faq-toggle-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-gold); font-size: 1.2rem; font-weight: 800;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background: var(--accent-gold);
  color: #0B0E11;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.75rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 1.75rem 1.6rem 1.75rem;
}

/* CONTACT FORM SECTION */
.contact-section {
  position: relative;
  z-index: 5;
  max-width: 960px;
  margin: 0 auto 7rem auto;
  padding: 0 2rem;
}

.contact-card {
  background: rgba(8, 18, 22, 0.9);
  border: 1px solid rgba(255, 199, 44, 0.3);
  border-radius: 24px;
  padding: 3.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 199, 44, 0.15);
  backdrop-filter: blur(16px);
}

.contact-header { text-align: center; margin-bottom: 2.75rem; }

.contact-tagline {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-gold);
  display: inline-block;
  background: rgba(255, 199, 44, 0.08);
  border: 1px solid rgba(255, 199, 44, 0.25);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.contact-heading {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.contact-subheading { font-size: 1.05rem; color: var(--text-secondary); }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label { font-size: 0.85rem; font-weight: 600; color: #CBD5E1; }

.form-group input, .form-group select, .form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1.1rem;
  outline: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(255, 199, 44, 0.2);
}

.contact-submit-btn {
  background: linear-gradient(135deg, #FFF5B8 0%, var(--accent-gold) 50%, var(--accent-gold-hover) 100%);
  color: #0B0E11;
  border: none;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1.1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all var(--transition-fast);
  box-shadow: 0 10px 30px var(--accent-gold-glow);
  cursor: pointer !important;
}

.contact-submit-btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 15px 40px var(--accent-gold-glow);
}

/* ALL MODAL BACKDROPS (Checkout, Export, Video) */
.modal-backdrop, .video-modal-backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.88) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 9999 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active, .video-modal-backdrop.active {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.checkout-modal-box, .modal-box, .video-modal-box {
  width: 90%;
  max-width: 520px;
  background: #081216;
  border: 1px solid rgba(255, 199, 44, 0.4);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 199, 44, 0.2);
  color: #FFFFFF;
  position: relative;
  z-index: 10000;
}

.video-modal-box {
  max-width: 900px;
}

.modal-header {
  padding: 1.25rem 1.75rem;
  background: #0D1B20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3, .modal-header h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.modal-close {
  background: none;
  border: none;
  color: #94A3B8;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer !important;
}

.modal-close:hover {
  color: #FFFFFF;
}

.checkout-body, .modal-body {
  padding: 1.75rem;
}

.checkout-summary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.chk-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-gold);
}


.video-modal-header {
  padding: 1.1rem 1.6rem; background: #081216;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: space-between;
}

.video-modal-header h3 {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 800; color: var(--accent-gold);
}

.video-close-btn {
  background: none; border: none; color: #94A3B8; font-size: 1.8rem;
}

.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* FOOTER */
.footer {
  position: relative; z-index: 10; background: #02090B;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4.5rem 0 2.5rem 0; color: #94A3B8;
}

.footer-container {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.6fr; gap: 3.5rem; margin-bottom: 4rem;
}

.footer-col-brand { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-bio { font-size: 0.92rem; line-height: 1.65; color: #94A3B8; max-width: 320px; }
.social-links { display: flex; align-items: center; gap: 0.85rem; }

.social-icon-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94A3B8; display: flex; align-items: center; justify-content: center;
}

.social-icon-btn:hover { background: var(--accent-gold); color: #0B0E11; }

.footer-col-links h4 {
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 800;
  letter-spacing: 1.8px; color: var(--accent-gold); margin-bottom: 1.4rem;
}

.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.footer-nav a { color: #94A3B8; text-decoration: none; font-size: 0.92rem; }
.footer-nav a:hover { color: #FFFFFF; }

.footer-newsletter-text { font-size: 0.92rem; color: #94A3B8; margin-bottom: 1.2rem; }
.newsletter-form { display: flex; gap: 0.5rem; }

.newsletter-input {
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF; padding: 0.75rem 1rem; border-radius: 6px; font-size: 0.9rem; flex: 1; outline: none;
}

.newsletter-submit-btn {
  background: var(--accent-gold); color: #0B0E11; border: none;
  font-weight: 800; padding: 0.75rem 1.25rem; border-radius: 6px;
}

.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding: 2rem 2rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; color: #64748B;
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 3rem; }
  .hero-card-wrapper { justify-content: center; }
  .hero-title { font-size: 3.25rem; }
  .assets-grid, .course-grid, .downloads-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-main-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .promo-card { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .assets-grid, .course-grid, .downloads-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .dashboard-banner { flex-direction: column; align-items: flex-start; }
  .progress-box { width: 100%; }
}

/* ==========================================================================
   WOOCOMMERCE & ACCESS CONTROL STYLES (TOTAL E-COMMERCE PLATFORM EDITION)
   ========================================================================== */

.ecom-page-wrapper {
  position: relative;
  z-index: 5;
  padding-top: 3.5rem;
  padding-bottom: 6rem;
}

.ecom-header {
  margin-bottom: 3.5rem;
  text-align: center;
}

.ecom-content-card {
  background: rgba(8, 18, 22, 0.9);
  border: 1px solid rgba(255, 199, 44, 0.35);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 199, 44, 0.15);
  backdrop-filter: blur(16px);
  color: #FFFFFF;
}

.access-locked-card {
  text-align: center;
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: radial-gradient(circle at 50% 0%, rgba(255, 199, 44, 0.08), transparent 70%);
}

.locked-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 199, 44, 0.12);
  border: 1px solid rgba(255, 199, 44, 0.4);
  color: var(--accent-gold);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 0.45rem 1.1rem;
  border-radius: 30px;
  margin-bottom: 1.75rem;
}

.locked-title {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.locked-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.locked-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 720px;
  width: 100%;
  margin-bottom: 3rem;
  text-align: left;
}

.locked-feat-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 1.1rem 1.4rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
}

.feat-check {
  color: var(--candle-bullish);
  font-weight: 800;
  font-size: 1.1rem;
}

.locked-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.woocommerce-checkout, .woocommerce-cart, .woocommerce-account {
  color: #FFFFFF;
}

.woocommerce-message, .woocommerce-info, .woocommerce-error {
  background: rgba(8, 18, 22, 0.95) !important;
  border-top-color: var(--accent-gold) !important;
  color: #FFFFFF !important;
  border-radius: 10px;
  padding: 1.1rem 1.5rem !important;
  margin-bottom: 2rem !important;
}

.woocommerce-error {
  border-top-color: var(--accent-rose) !important;
}

.woocommerce table.shop_table {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  color: #FFFFFF !important;
}

.woocommerce table.shop_table th {
  font-family: var(--font-mono);
  color: var(--accent-gold);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 1rem !important;
}

.woocommerce table.shop_table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 1rem !important;
}

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #FFFFFF !important;
  border-radius: 8px !important;
  padding: 0.85rem 1.1rem !important;
}

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  background: linear-gradient(135deg, #FFF5B8 0%, var(--accent-gold) 50%, var(--accent-gold-hover) 100%) !important;
  color: #0B0E11 !important;
  font-weight: 800 !important;
  border-radius: 8px !important;
  padding: 0.9rem 1.8rem !important;
  border: none !important;
  box-shadow: 0 6px 20px var(--accent-gold-glow) !important;
  cursor: pointer !important;
}

