body {
  background: radial-gradient(circle at top, #0a0a0a 0, #000000 45%, #000 100%);
  font-weight: 600;
  position: relative;
  overflow-x: hidden;
}

/* Glowing Particle Overlay */
.glow-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
  animation: particle-glow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes particle-glow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* Geometric Layer Overlay */
.geometric-layer {
  background-image: 
    linear-gradient(135deg, transparent 0%, rgba(251, 191, 36, 0.05) 50%, transparent 100%),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(251, 191, 36, 0.03) 10px, rgba(251, 191, 36, 0.03) 20px);
  pointer-events: none;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 85%;
}

.hero-section {
  position: relative;
  overflow: hidden;
}

/* Black Friday Typography - Enhanced Neon Glow */
.bf-title {
  font-family: 'Impact', 'Arial Black', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
}

.bf-title-main {
  color: #ffffff;
  -webkit-text-stroke: 3px #dc2626;
  text-stroke: 3px #dc2626;
  text-shadow: 
    -3px -3px 0px #dc2626,
    3px -3px 0px #dc2626,
    -3px 3px 0px #dc2626,
    3px 3px 0px #dc2626,
    0 0 20px rgba(220, 38, 38, 1),
    0 0 40px rgba(220, 38, 38, 0.9),
    0 0 60px rgba(220, 38, 38, 0.7),
    0 0 80px rgba(220, 38, 38, 0.5),
    5px 5px 0px rgba(0, 0, 0, 0.9),
    8px 8px 0px rgba(0, 0, 0, 0.7);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.9));
  display: block;
}

.bf-title-sub {
  color: #fbbf24;
  -webkit-text-stroke: 3px #dc2626;
  text-stroke: 3px #dc2626;
  text-shadow: 
    -3px -3px 0px #dc2626,
    3px -3px 0px #dc2626,
    -3px 3px 0px #dc2626,
    3px 3px 0px #dc2626,
    0 0 20px rgba(251, 191, 36, 1),
    0 0 40px rgba(251, 191, 36, 0.9),
    0 0 60px rgba(251, 191, 36, 0.7),
    0 0 80px rgba(251, 191, 36, 0.5),
    4px 4px 0px rgba(0, 0, 0, 0.9),
    7px 7px 0px rgba(0, 0, 0, 0.7);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.9));
  display: block;
}

@keyframes neon-pulse-red {
  0%, 100% {
    text-shadow: 
      -3px -3px 0px #dc2626,
      3px -3px 0px #dc2626,
      -3px 3px 0px #dc2626,
      3px 3px 0px #dc2626,
      0 0 20px rgba(220, 38, 38, 1),
      0 0 40px rgba(220, 38, 38, 0.9),
      0 0 60px rgba(220, 38, 38, 0.7),
      0 0 80px rgba(220, 38, 38, 0.5),
      5px 5px 0px rgba(0, 0, 0, 0.9),
      8px 8px 0px rgba(0, 0, 0, 0.7);
  }
  50% {
    text-shadow: 
      -3px -3px 0px #dc2626,
      3px -3px 0px #dc2626,
      -3px 3px 0px #dc2626,
      3px 3px 0px #dc2626,
      0 0 30px rgba(220, 38, 38, 1),
      0 0 60px rgba(220, 38, 38, 0.9),
      0 0 90px rgba(220, 38, 38, 0.7),
      0 0 120px rgba(220, 38, 38, 0.5),
      5px 5px 0px rgba(0, 0, 0, 0.9),
      8px 8px 0px rgba(0, 0, 0, 0.7);
  }
}

@keyframes neon-pulse-gold {
  0%, 100% {
    text-shadow: 
      -3px -3px 0px #dc2626,
      3px -3px 0px #dc2626,
      -3px 3px 0px #dc2626,
      3px 3px 0px #dc2626,
      0 0 20px rgba(251, 191, 36, 1),
      0 0 40px rgba(251, 191, 36, 0.9),
      0 0 60px rgba(251, 191, 36, 0.7),
      0 0 80px rgba(251, 191, 36, 0.5),
      4px 4px 0px rgba(0, 0, 0, 0.9),
      7px 7px 0px rgba(0, 0, 0, 0.7);
  }
  50% {
    text-shadow: 
      -3px -3px 0px #dc2626,
      3px -3px 0px #dc2626,
      -3px 3px 0px #dc2626,
      3px 3px 0px #dc2626,
      0 0 30px rgba(251, 191, 36, 1),
      0 0 60px rgba(251, 191, 36, 0.9),
      0 0 90px rgba(251, 191, 36, 0.7),
      0 0 120px rgba(251, 191, 36, 0.5),
      4px 4px 0px rgba(0, 0, 0, 0.9),
      7px 7px 0px rgba(0, 0, 0, 0.7);
  }
}

/* Neon Text Effects */
.neon-text-gold {
  color: #fbbf24;
  text-shadow: 
    0 0 10px rgba(251, 191, 36, 0.8),
    0 0 20px rgba(251, 191, 36, 0.6),
    0 0 30px rgba(251, 191, 36, 0.4);
}

.neon-glow-gold {
  text-shadow: 
    0 0 10px rgba(251, 191, 36, 1),
    0 0 20px rgba(251, 191, 36, 0.8),
    0 0 30px rgba(251, 191, 36, 0.6),
    0 0 40px rgba(251, 191, 36, 0.4);
}

.neon-glow-red {
  text-shadow: 
    0 0 10px rgba(220, 38, 38, 1),
    0 0 20px rgba(220, 38, 38, 0.8),
    0 0 30px rgba(220, 38, 38, 0.6),
    0 0 40px rgba(220, 38, 38, 0.4);
}

/* Drop Shadow Glow Effects */
.drop-shadow-glow-gold {
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.8)) drop-shadow(0 0 16px rgba(251, 191, 36, 0.5));
}

.drop-shadow-glow-red {
  filter: drop-shadow(0 0 8px rgba(220, 38, 38, 0.8)) drop-shadow(0 0 16px rgba(220, 38, 38, 0.5));
}

/* Hero Gradient Text Styles - Using solid colors for better readability */
.hero-gradient-text-primary {
  /* Solid white with red stroke for maximum readability */
  color: #ffffff;
}

.hero-gradient-text-secondary {
  /* Solid gold with red stroke for maximum readability */
  color: #fbbf24;
}

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

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

/* Enhanced readability - fallback for browsers that don't support text-stroke */
@supports not (-webkit-text-stroke: 3px #dc2626) {
  .bf-title-main {
    color: #ffffff;
    text-shadow: 
      0 0 8px #dc2626,
      0 0 16px #dc2626,
      0 0 24px #dc2626,
      -4px -4px 0px #dc2626,
      4px -4px 0px #dc2626,
      -4px 4px 0px #dc2626,
      4px 4px 0px #dc2626,
      5px 5px 0px rgba(0, 0, 0, 0.9),
      8px 8px 0px rgba(0, 0, 0, 0.7);
  }
  
  .bf-title-sub {
    color: #fbbf24;
    text-shadow: 
      0 0 8px #dc2626,
      0 0 16px #fbbf24,
      0 0 24px #dc2626,
      -4px -4px 0px #dc2626,
      4px -4px 0px #dc2626,
      -4px 4px 0px #dc2626,
      4px 4px 0px #dc2626,
      4px 4px 0px rgba(0, 0, 0, 0.9),
      7px 7px 0px rgba(0, 0, 0, 0.7);
  }
}

/* Pill Icons Animation */
.pill-with-icon {
  transition: all 0.3s ease;
}

.pill-with-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.bf-pill {
  transition: all 0.3s ease;
}

.bf-pill:hover {
  background: rgba(220, 38, 38, 0.3) !important;
  transform: scale(1.05);
}

.pill-icon {
  animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
}

/* CTA Button Pulse Animation */
.cta-button-pulse {
  position: relative;
  overflow: hidden;
}

.cta-button-pulse::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}

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

.cta-arrow {
  animation: arrow-bounce 2s ease-in-out infinite;
}

@keyframes arrow-bounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

.cta-button-pulse:hover .cta-arrow {
  animation: arrow-bounce-fast 0.6s ease-in-out infinite;
}

@keyframes arrow-bounce-fast {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}

.bf-cta-button {
  position: relative;
}

.bf-cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.6s ease, height 0.6s ease;
}

.bf-cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.bf-badge {
  box-shadow: 
    0 0 20px rgba(251, 191, 36, 0.5),
    0 0 40px rgba(251, 191, 36, 0.3),
    inset 0 0 10px rgba(251, 191, 36, 0.1);
}

@keyframes badge-glow {
  0%, 100% {
    box-shadow: 
      0 0 20px rgba(251, 191, 36, 0.5),
      0 0 40px rgba(251, 191, 36, 0.3),
      inset 0 0 10px rgba(251, 191, 36, 0.1);
  }
  50% {
    box-shadow: 
      0 0 30px rgba(251, 191, 36, 0.8),
      0 0 60px rgba(251, 191, 36, 0.5),
      inset 0 0 15px rgba(251, 191, 36, 0.2);
  }
}

/* Decorative Elements */
.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #dc2626;
  animation: confetti-fall 8s linear infinite;
  opacity: 0.8;
}

.confetti-1 {
  left: 10%;
  animation-delay: 0s;
  background: #dc2626;
}

.confetti-2 {
  left: 30%;
  animation-delay: 1s;
  background: #fbbf24;
}

.confetti-3 {
  left: 50%;
  animation-delay: 2s;
  background: #ffffff;
}

.confetti-4 {
  left: 70%;
  animation-delay: 3s;
  background: #dc2626;
}

.confetti-5 {
  left: 90%;
  animation-delay: 4s;
  background: #fbbf24;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

.decorative-gift {
  position: absolute;
  animation: float 6s ease-in-out infinite;
  opacity: 0.6;
}

.gift-1 {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.gift-2 {
  top: 60%;
  right: 5%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.decorative-tag {
  position: absolute;
  animation: tag-swing 4s ease-in-out infinite;
  opacity: 0.7;
}

.tag-1 {
  top: 40%;
  left: 5%;
  animation-delay: 1s;
}

@keyframes tag-swing {
  0%, 100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

.card {
  background: #0d0d0d;
  border-radius: 1rem;
  position: relative;
}

.overview-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.overview-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.6), rgba(251, 191, 36, 0.3), rgba(251, 191, 36, 0.6));
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  filter: blur(8px);
}

.overview-card:hover::after {
  opacity: 1;
}

.overview-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 
    0 10px 40px rgba(251, 191, 36, 0.3),
    0 0 60px rgba(251, 191, 36, 0.2),
    inset 0 0 20px rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.8);
}

.overview-card i {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.tab-active {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(251, 191, 36, 0.2));
  color: #fbbf24;
  /* font-weight: 900; */
  /* border: 2px solid rgba(251, 191, 36, 0.6);
  box-shadow: 
    0 0 15px rgba(251, 191, 36, 0.4),
    inset 0 0 10px rgba(251, 191, 36, 0.1); */
}

.tab-trigger {
  transition: all 0.3s ease;
  color: #d4d4d8;
}

/* .tab-trigger:hover {
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
  border: 2px solid rgba(251, 191, 36, 0.3);
} */

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}

.accordion-item.open .accordion-content {
  max-height: 400px;
  opacity: 1;
}

.accordion-item .chevron {
  transition: transform 0.2s ease;
}

.accordion-item.open .chevron {
  transform: rotate(180deg);
}

/* Black Friday Section Titles */
.bf-section-title {
  font-family: 'Impact', 'Arial Black', sans-serif;
  /* text-shadow: 
    2px 2px 0px #dc2626, 
    4px 4px 0px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(251, 191, 36, 0.6),
    0 0 40px rgba(251, 191, 36, 0.4); */
  color: #ffffff;
  position: relative;
  display: inline-block;
}

.bf-section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #fbbf24, #dc2626, #fbbf24, transparent);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
  animation: underline-glow 2s ease-in-out infinite;
}

@keyframes underline-glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
    width: 80px;
  }
  50% {
    box-shadow: 0 0 20px rgba(251, 191, 36, 1);
    width: 100px;
  }
}

/* Enhanced accordion styling */
.accordion-item {
  transition: all 0.3s ease;
}

.accordion-item:hover {
  background: rgba(251, 191, 36, 0.05);
}

.accordion-item button {
  transition: all 0.3s ease;
}

.accordion-item button:hover {
  color: #fbbf24;
}

/* Enhanced table styling */
table {
  border-collapse: separate;
  border-spacing: 0;
}

table th {
  background: rgba(251, 191, 36, 0.1);
  border-bottom: 2px solid rgba(251, 191, 36, 0.4);
}

table tr {
  transition: all 0.2s ease;
}

table tr:hover {
  background: rgba(251, 191, 36, 0.1);
  transform: scale(1.01);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Additional glow effects for sections */
section {
  position: relative;
}

/* section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.5), transparent);
  opacity: 0.5;
} */

/* Footer enhancements */
footer {
  position: relative;
  border-top: 2px solid rgba(251, 191, 36, 0.3);
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.6), transparent);
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
}

footer a {
  position: relative;
  transition: all 0.3s ease;
}

footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fbbf24;
  transition: width 0.3s ease;
  box-shadow: 0 0 5px rgba(251, 191, 36, 0.8);
}

footer a:hover::after {
  width: 100%;
}

footer a:hover {
  color: #fbbf24;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
}

/* Mobile: Initially hide CTAs, they'll be shown after pills via JavaScript */
@media (max-width: 640px) {
  .cta-mobile-visible {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
  }
}