/* ==========================================================================
   Premium Gold Investment Layout Stylesheet (Vanilla CSS)
   ========================================================================== */

/* Design Tokens & Variables */
:root {
  --bg-dark-core: #07080a;
  --bg-dark-card: #0f1118;
  --bg-dark-card-hover: #161822;
  --accent-gold-light: #f5d061;
  --accent-gold: #c5a059;
  --accent-gold-dark: #997836;
  --accent-gold-gradient: linear-gradient(135deg, #f9df95 0%, #c5a059 50%, #906e27 100%);
  --accent-gold-gradient-hover: linear-gradient(135deg, #ffebad 0%, #d7b26c 50%, #a68137 100%);
  --text-light-primary: #ffffff;
  --text-light-secondary: #9ea3ae;
  --text-dark-primary: #11141a;
  --text-dark-secondary: #5a5f6b;
  --border-light-opacity: rgba(255, 255, 255, 0.08);
  --border-dark-opacity: rgba(17, 20, 26, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-bg-hover: rgba(255, 255, 255, 0.05);
  --shadow-premium: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 10px 30px -10px rgba(197, 160, 89, 0.3);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Adjustments & Utility Styles */
.premium-dark-section {
  background-color: var(--bg-dark-core) !important;
  color: var(--text-light-primary) !important;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.premium-light-section {
  background-color: #ffffff !important;
  color: var(--text-dark-primary) !important;
  padding: 100px 0;
  position: relative;
}

/* Specificity overrides to force headings inside dark sections to render as high-contrast white */
body .premium-dark-section h1,
body .premium-dark-section h2,
body .premium-dark-section h3,
body .premium-dark-section h4,
body .premium-dark-section h5,
body .premium-dark-section h6,
body .premium-dark-section .premium-headline,
body .premium-dark-section .glass-card-title,
body .premium-dark-section .story-block h3,
body .premium-dark-section .takeaway-list li,
body .final-cta-section h1,
body .final-cta-section h2,
body .final-cta-section h3,
body .final-cta-section h4,
body .final-cta-section h5,
body .final-cta-section h6,
body .final-cta-section .premium-headline {
  color: var(--text-light-primary) !important;
}

/* Specificity overrides to force headings inside light sections to render as dark charcoal */
body .premium-light-section h1,
body .premium-light-section h2,
body .premium-light-section h3,
body .premium-light-section h4,
body .premium-light-section h5,
body .premium-light-section h6,
body .premium-light-section .premium-headline,
body .premium-light-section .luxury-card-title {
  color: var(--text-dark-primary) !important;
}

/* Forces gold accent colors with gradients */
body .font-gold-accent,
body span.font-gold-accent,
body .section-tagline,
body span.section-tagline {
  color: var(--accent-gold) !important;
  background: var(--accent-gold-gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* Gradients and Background Blobs */
.bg-radial-gold-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, rgba(0,0,0,0) 70%);
  top: 10%;
  right: -10%;
  pointer-events: none;
  z-index: 1;
}

.bg-radial-gold-glow-left {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.06) 0%, rgba(0,0,0,0) 75%);
  bottom: 5%;
  left: -15%;
  pointer-events: none;
  z-index: 1;
}

/* Header & Sticky Header overrides for luxury look */
.main-header.header-style-two {
  background-color: var(--bg-dark-core) !important;
  border-bottom: 1px solid var(--border-light-opacity);
}

.header-top-two {
  background-color: #040507 !important;
  border-bottom: 1px solid var(--border-light-opacity) !important;
}

.header-top-two .left-column p,
.header-top-two .right-column ul.social-links li,
.header-top-two .right-column ul.social-links li a {
  color: var(--text-light-secondary) !important;
  font-family: var(--text-font);
}

.header-top-two .left-column p a {
  color: var(--accent-gold) !important;
}

.header-top-two .right-column .download-box button {
  color: var(--text-light-primary) !important;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light-opacity);
}

.header-top-two .right-column .download-box button:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold) !important;
}

.main-header .header-lower {
  background-color: var(--bg-dark-core) !important;
  display: flow-root !important;
}

.main-menu .navigation > li > a {
  color: var(--text-light-primary) !important;
  font-family: var(--title-font);
  font-weight: 500;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a {
  color: var(--accent-gold) !important;
}

.main-menu .navigation > li > ul {
  background-color: var(--bg-dark-card) !important;
  border: 1px solid var(--border-light-opacity) !important;
}

.main-menu .navigation > li > ul > li > a {
  color: var(--text-light-secondary) !important;
  font-family: var(--text-font);
}

.main-menu .navigation > li > ul > li > a:hover {
  color: var(--accent-gold) !important;
  background-color: rgba(255, 255, 255, 0.02) !important;
}

.main-header.header-style-two .menu-right-content .support-box h6 {
  color: var(--text-light-secondary) !important;
}

.main-header.header-style-two .menu-right-content .support-box h5 a {
  color: var(--text-light-primary) !important;
}

.main-header.header-style-two .menu-right-content .support-box h5 a:hover {
  color: var(--accent-gold) !important;
}

.main-header.header-style-two .menu-right-content .btn-box .btn-one {
  background: var(--accent-gold-gradient);
  color: #000000 !important;
  border-radius: 4px;
}

.main-header.header-style-two .menu-right-content .btn-box .btn-one:hover {
  background: var(--accent-gold-gradient-hover);
}

/* Sticky Header */
.sticky-header {
  background-color: var(--bg-dark-core) !important;
  border-bottom: 1px solid var(--border-light-opacity) !important;
}

.sticky-header .main-menu .navigation > li > a {
  color: var(--text-light-primary) !important;
}

.sticky-header .main-menu .navigation > li:hover > a,
.sticky-header .main-menu .navigation > li.current > a {
  color: var(--accent-gold) !important;
}

.sticky-header .support-box h6 {
  color: var(--text-light-secondary) !important;
}

.sticky-header .support-box h5 a {
  color: var(--text-light-primary) !important;
}

.sticky-header .btn-box .btn-one {
  background: var(--accent-gold-gradient) !important;
  color: #000000 !important;
}

/* Mobile Menu Overrides */
.mobile-menu .menu-box {
  background-color: var(--bg-dark-core) !important;
  border-left: 1px solid var(--border-light-opacity);
}

.mobile-menu .navigation li a {
  color: var(--text-light-primary) !important;
}

.mobile-menu .navigation li a:hover {
  color: var(--accent-gold) !important;
}

/* Custom Typography & Spacing */
.premium-headline {
  font-family: var(--title-font);
  font-size: 56px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -1px;
}

.premium-subtitle {
  font-family: var(--text-font);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-light-secondary);
  font-weight: 300;
}

.premium-light-section .premium-subtitle {
  color: var(--text-dark-secondary);
}

/* CTA Buttons styling */
.cta-gold-btn {
  background: var(--accent-gold-gradient);
  color: #000000 !important;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-smooth);
  font-size: 16px;
  font-family: var(--title-font);
}

.cta-gold-btn:hover {
  background: var(--accent-gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(197, 160, 89, 0.45);
}

.cta-gold-btn i {
  transition: var(--transition-smooth);
}

.cta-gold-btn:hover i {
  transform: translateX(4px) translateY(-4px);
}

.cta-outline-btn {
  background: transparent;
  color: var(--text-light-primary) !important;
  border: 1px solid var(--border-light-opacity);
  padding: 16px 36px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 16px;
  font-family: var(--title-font);
}

.cta-outline-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-gold);
  color: #ffffff !important;
}

.premium-light-section .cta-outline-btn {
  color: var(--text-dark-primary) !important;
  border-color: var(--border-dark-opacity);
}

.premium-light-section .cta-outline-btn:hover {
  background: rgba(0, 0, 0, 0.02);
  border-color: var(--text-dark-primary);
}

/* Glassmorphism Cards & Containers */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-light-opacity);
  border-radius: 12px;
  padding: 35px;
  transition: var(--transition-smooth);
  height: 100%;
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(197, 160, 89, 0.25);
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
}

.glass-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(197, 160, 89, 0.06);
  color: var(--accent-gold);
  font-size: 26px;
  margin-bottom: 25px;
  border: 1px solid rgba(197, 160, 89, 0.15);
}

.glass-card-text {
  font-family: var(--text-font);
  color: var(--text-light-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* Light Mode Luxury Cards */
.luxury-card {
  background: #fbfbfd;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  padding: 35px;
  transition: var(--transition-smooth);
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.luxury-card:hover {
  background: #ffffff;
  border-color: rgba(197, 160, 89, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.06);
}

.luxury-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(197, 160, 89, 0.05);
  color: var(--accent-gold-dark);
  font-size: 26px;
  margin-bottom: 25px;
  border: 1px solid rgba(197, 160, 89, 0.1);
}

.luxury-card-text {
  font-family: var(--text-font);
  color: var(--text-dark-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* Hero Section Stats Layout */
.hero-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light-opacity);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 25px;
  color: var(--accent-gold);
}

.hero-stat-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light-opacity);
  border-radius: 8px;
  padding: 16px 20px;
}

.hero-stat-number {
  font-family: var(--title-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-gold) !important;
  line-height: 1.1;
}

.hero-stat-label {
  font-family: var(--text-font);
  font-size: 13px;
  color: var(--text-light-secondary);
  line-height: 1.3;
}

/* Credibility Trust Bar (Gold Ticker) - Forced Dark Background */
.trust-bar {
  background-color: #0c0e12 !important;
  border-top: 1px solid var(--border-light-opacity) !important;
  border-bottom: 1px solid var(--border-light-opacity) !important;
  padding: 30px 0 !important;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.trust-item-icon {
  font-size: 20px;
  color: var(--accent-gold);
}

.trust-item-label {
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-light-primary) !important;
}

/* Custom Timeline / Alternating Storytelling Layout (Desire for Gold) */
.story-block {
  margin-bottom: 80px;
}

.story-block:last-child {
  margin-bottom: 0;
}

.story-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.story-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(7, 8, 10, 0.95) 100%);
  z-index: 1;
}

.story-highlight-box {
  background: rgba(197, 160, 89, 0.04);
  border-left: 3px solid var(--accent-gold);
  padding: 25px;
  border-radius: 0 8px 8px 0;
  margin: 30px 0;
}

.story-highlight-quote {
  font-family: var(--text-font);
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  color: var(--accent-gold-light);
}

/* Interactive Timeline component */
.timeline-process {
  position: relative;
  margin: 50px 0;
}

.timeline-process::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--accent-gold-dark) 0%, rgba(255,255,255,0.05) 100%);
  top: 40px;
  left: 0;
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.timeline-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-dark-card);
  border: 2px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
  transition: var(--transition-smooth);
}

.timeline-step:hover .timeline-circle {
  transform: scale(1.1);
  background: var(--accent-gold-gradient);
  color: #000;
  box-shadow: 0 0 30px rgba(197, 160, 89, 0.4);
}

.timeline-title {
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-light-primary);
}

.timeline-desc {
  font-family: var(--text-font);
  font-size: 13px;
  color: var(--text-light-secondary);
  line-height: 1.5;
  padding: 0 10px;
}

/* Comparison Table (Gold vs Cryptocurrencies) */
.comparison-container {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-light-opacity);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
  padding: 22px 25px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
  background: rgba(255, 255, 255, 0.01);
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light-primary);
}

.comparison-table td {
  font-family: var(--text-font);
  font-size: 15px;
  color: var(--text-light-secondary);
}

.comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.01);
  color: #ffffff;
}

.comparison-highlight-gold {
  color: var(--accent-gold-light);
  font-weight: 600;
}

/* Accordion FAQs & Key Takeaways */
.luxury-accordion {
  margin-top: 30px;
}

.luxury-accordion-item {
  border: 1px solid var(--border-light-opacity);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.01);
  margin-bottom: 15px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.luxury-accordion-item:hover {
  border-color: rgba(197, 160, 89, 0.2);
}

.luxury-accordion-header {
  padding: 22px 25px;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light-primary) !important;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.luxury-accordion-header::after {
  content: '+';
  font-family: var(--title-font);
  font-size: 22px;
  color: var(--accent-gold);
  transition: var(--transition-smooth);
  line-height: 1;
}

.luxury-accordion-item.active .luxury-accordion-header::after {
  content: '-';
  transform: rotate(180deg);
}

.luxury-accordion-body {
  padding: 0 25px 22px 25px;
  font-family: var(--text-font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light-secondary);
  display: none;
}

.luxury-accordion-item.active .luxury-accordion-body {
  display: block;
}

/* Takeaways Bullet layout */
.takeaway-list {
  list-style: none;
  padding: 0;
}

.takeaway-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  font-family: var(--text-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light-secondary);
}

.takeaway-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0px;
  color: var(--accent-gold);
  font-size: 16px;
}

/* Callout Box (Cash vs Gold) */
.comparison-card-wrapper {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-light-opacity);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.comparison-card-side {
  padding: 40px;
}

.comparison-card-side.gold-side {
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.05) 0%, rgba(0,0,0,0) 100%);
  border-left: 1px solid rgba(197, 160, 89, 0.15);
}

.comparison-value-badge {
  font-family: var(--title-font);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin: 20px 0;
}

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

.comparison-value-badge.cash {
  color: #727b8e;
}

/* Final CTA Section Style */
.final-cta-section {
  background: radial-gradient(circle at center, #13151c 0%, #07080a 100%) !important;
  color: var(--text-light-primary) !important;
  padding: 120px 0;
  position: relative;
  text-align: center;
  border-top: 1px solid var(--border-light-opacity);
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.06) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 1;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

/* Image visuals */
.premium-image-box {
  position: relative;
  z-index: 2;
}

.premium-image-box img {
  border-radius: 12px;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-image-box::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--accent-gold);
  border-radius: 12px;
  top: 15px;
  left: 15px;
  z-index: -1;
  opacity: 0.3;
}

/* Circular Text visual overlay */
.circle-text-wrapper {
  position: absolute;
  top: -40px;
  right: -40px;
  z-index: 5;
  width: 130px;
  height: 130px;
  background: var(--bg-dark-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-gold);
  box-shadow: var(--shadow-premium);
}

.circle-text-wrapper .play-btn-inner {
  width: 60px;
  height: 60px;
  background: var(--accent-gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 16px;
  transition: var(--transition-smooth);
}

.circle-text-wrapper:hover .play-btn-inner {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

/* Odometer integration styles */
.odometer-prefix {
  font-family: var(--title-font);
  color: var(--accent-gold);
  font-size: 32px;
  font-weight: 700;
}

/* Footer overrides */
.footer-style-two {
  background-color: var(--bg-dark-core) !important;
  border-top: 1px solid var(--border-light-opacity);
}

.footer-style-two .widget-section {
  padding: 80px 0 50px 0 !important;
}

.footer-style-two .footer-widget .widget-title h3 {
  color: var(--text-light-primary) !important;
  font-family: var(--title-font);
  font-weight: 600;
  border-bottom: 2px solid var(--accent-gold);
  padding-bottom: 12px;
  display: inline-block;
}

.footer-style-two .footer-widget.links-widget ul.links-list li a {
  color: var(--text-light-secondary) !important;
}

.footer-style-two .footer-widget.links-widget ul.links-list li a:hover {
  color: var(--accent-gold) !important;
}

.footer-style-two .logo-widget h5 {
  color: var(--text-light-primary) !important;
  font-family: var(--title-font);
}

.footer-style-two .logo-widget .form-inner .form-group input {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid var(--border-light-opacity) !important;
  color: #ffffff !important;
}

.footer-style-two .logo-widget .form-inner .form-group input:focus {
  border-color: var(--accent-gold) !important;
}

.footer-style-two .logo-widget .form-inner .form-group button {
  background: var(--accent-gold-gradient) !important;
  color: #000000 !important;
}

.footer-style-two .footer-bottom-two {
  background-color: #040507 !important;
  border-top: 1px solid var(--border-light-opacity);
}

.footer-style-two .footer-bottom-two .copyright p,
.footer-style-two .footer-bottom-two .copyright p a {
  color: var(--text-light-secondary) !important;
}

.footer-style-two .footer-bottom-two .copyright p a:hover {
  color: var(--accent-gold) !important;
}

/* Gold Ticker Styles */
.ticker-rate-badge {
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.ticker-rate-badge.up {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
}

.ticker-rate-badge.down {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
}

/* Mobile Responsive Overrides for Hero and Global Elements */
@media (max-width: 767px) {
  .premium-dark-section {
    padding: 60px 0 !important;
  }
  body .premium-headline {
    font-size: 32px !important;
    line-height: 1.25 !important;
  }
  body .premium-subtitle {
    font-size: 15px !important;
    margin-bottom: 25px !important;
  }
  .premium-dark-section .btn-box {
    margin-bottom: 30px !important;
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }
  .premium-dark-section .btn-box a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .hero-stat-box {
    padding: 12px 15px !important;
    align-items: center !important;
    text-align: center !important;
  }
  .hero-stat-number {
    font-size: 24px !important;
  }
  .circle-text-wrapper {
    top: -20px !important;
    right: 10px !important;
    width: 90px !important;
    height: 90px !important;
  }
  .circle-text-wrapper .play-btn-inner {
    width: 45px !important;
    height: 45px !important;
    font-size: 12px !important;
  }
  .premium-image-box::before {
    display: none !important;
  }
}

/* Premium Video Placeholder Styles */
.video-placeholder-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 50px rgba(197, 160, 89, 0.05);
    background: #0f1118;
    transition: var(--transition-smooth);
}

.video-placeholder-container:hover {
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.9), 0 0 60px rgba(197, 160, 89, 0.1);
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: block;
}

.video-thumbnail-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.video-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(7, 8, 10, 0.2) 0%, rgba(7, 8, 10, 0.7) 100%);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.video-placeholder-container:hover .video-overlay-glow {
    background: linear-gradient(to bottom, rgba(7, 8, 10, 0.4) 0%, rgba(7, 8, 10, 0.85) 100%);
}

.video-play-btn-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.video-play-btn-circle {
    width: 80px;
    height: 80px;
    background: var(--accent-gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 12;
    cursor: pointer;
    border: none;
}

.play-triangle {
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-left: 20px solid #07080a;
    border-bottom: 12px solid transparent;
    margin-left: 6px;
    transition: var(--transition-smooth);
}

.video-play-btn-circle:hover {
    transform: scale(1.12);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.7);
}

.video-play-btn-circle:hover .play-triangle {
    border-left-color: #000;
}

/* Pulsing rings around play button */
.play-pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.6);
    pointer-events: none;
    z-index: 11;
}

.play-pulse-ring.ring-1 {
    animation: play-pulse-animation-1 3s infinite linear;
}

.play-pulse-ring.ring-2 {
    animation: play-pulse-animation-2 3s infinite linear;
}

@keyframes play-pulse-animation-1 {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes play-pulse-animation-2 {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.6);
        opacity: 0;
    }
}

.video-caption-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 17, 24, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
    transition: var(--transition-smooth);
}

.video-placeholder-container:hover .video-caption-bar {
    background: rgba(15, 17, 24, 0.85);
}

.video-title-text {
    font-family: var(--title-font);
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.video-title-text i {
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.video-placeholder-container:hover .video-title-text i {
    transform: scale(1.1);
}

.video-quality-tag {
    font-family: var(--text-font);
    font-size: 12px;
    color: var(--accent-gold);
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

