/* CSS Variables for Bluish Pink and Purple Gaming Theme */
:root {
  /* Primary Colors */
  --primary-purple: #6366f1;
  --primary-pink: #ec4899;
  --primary-blue: #3b82f6;

  /* Gradient Colors */
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #3b82f6 100%);
  --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #f472b6 100%);
  --gradient-accent: linear-gradient(135deg, #a855f7 0%, #06b6d4 100%);

  /* Background Colors */
  --bg-primary: #0f0f23;
  --bg-secondary: #1a1a2e;
  --bg-tertiary: #16213e;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-glass: rgba(255, 255, 255, 0.1);

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #e2e8f0;
  --text-muted: #94a3b8;
  --text-accent: #f472b6;

  /* Border Colors */
  --border-primary: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(244, 114, 182, 0.3);

  /* Shadow Colors */
  --shadow-primary: rgba(99, 102, 241, 0.3);
  --shadow-secondary: rgba(236, 72, 153, 0.3);
  --shadow-glow: rgba(99, 102, 241, 0.5);

  /* Fonts */
  --font-primary: "Inter", sans-serif;
  --font-heading: "Orbitron", monospace;

  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 5rem 2rem;
  --card-padding: 2rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: var(--container-max-width);

  /* margin: 0px; */
  /* padding: 0 2.5rem; */
}

/* Navigation */
.navbar {
  position: fixed;
  /* display:none; */
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-primary);
  z-index: 1000;
  transition: var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(15, 15, 35, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
}

.logo-icon {
  font-size: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--text-accent);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.cta-nav {
  background: var(--gradient-primary);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  color: white !important;
}

.cta-nav::after {
  display: none;
}

/* Default/Normal State */
.nav-link {
  opacity: 1;
}

/* Hover State */
.nav-link:hover {
  color: var(--text-accent);
  transform: translateY(-1px);
}

/* Active State (currently viewing page) */
.nav-link.active,
.nav-link[aria-current="page"] {
  color: var(--text-accent);
  font-weight: 600;
}

/* Visited State */
.nav-link:visited {
  color: var(--text-secondary);
}

/* Focus State (for keyboard navigation) */
.nav-link:focus {
  outline: 2px solid var(--primary-purple);
  outline-offset: 2px;
  color: var(--text-accent);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}

/* Focus-visible (modern browsers) */
.nav-link:focus-visible {
  outline: 2px solid var(--primary-purple);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}

/* Disabled State */
.nav-link:disabled,
.nav-link[aria-disabled="true"] {
  color: var(--text-muted);
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Underline Animation */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-fast);
  border-radius: 1px;
}

/* Hover Underline */
.nav-link:hover::after {
  width: 100%;
}

/* Active Underline */
.nav-link.active::after,
.nav-link[aria-current="page"]::after {
  width: 100%;
  background: var(--gradient-secondary);
}

/* Focus Underline */
.nav-link:focus::after,
.nav-link:focus-visible::after {
  width: 100%;
  background: var(--primary-purple);
  padding: 0 2px;
  border-radius: 1rem;
}

/* CTA Navigation Button */
.cta-nav {
  background: var(--gradient-primary);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  color: white !important;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
  transition: all var(--transition-normal);
}

/* CTA Hover State */
.cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
  color: white !important;
}

/* CTA Active State */
.cta-nav:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}

/* CTA Focus State */
.cta-nav:focus,
.cta-nav:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4), 0 0 0 4px rgba(255, 255, 255, 0.3);
}

/* CTA Visited State */
.cta-nav:visited {
  color: white !important;
}

/* Remove underline from CTA */
.cta-nav::after {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 27px;
  height: 3px;
  background: var(--text-primary);
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
       
  min-height: 98vh;
  display: flex;
  align-items: center;
  position: relative;
 
  overflow: hidden;
  
}

.hero-background {
        /* border: 1px solid var(--border-primary); */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 100vw;
  min-height: 100vh;
  background: var(--gradient-primary);
  opacity: 0.1;
  z-index: -1;
  padding: 1rem;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(236, 72, 153, 0.3) 0%, transparent 50%);
}

.hero-content {
       /* border: 4px solid #fff; */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  /* min-height: 40vh; */
  padding:100px 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
}

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

.hero-subtitle {
  display: block;
  font-size: 1rem;
  color: var(--text-accent);
  margin-top: 0.5rem;
}

.hero-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 5rem;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 20px var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--shadow-primary);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-accent);
}

.btn-secondary:hover {
  background: var(--gradient-secondary);
  border-color: transparent;
  transform: translateY(-2px);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.headphone-showcase {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.headphone-img {
  width: 400px;
  height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(99, 102, 241, 0.3));
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(60px);
  animation: pulse 4s ease-in-out infinite;
}

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

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

/* Section Styles */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* Overview Section */
.overview-content {
  max-width: 800px;
  margin: 0 auto;
}

.overview-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1.8;
}

.key-highlights {
  display: grid;
  gap: 2rem;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 15px;
  border: 1px solid var(--border-primary);
  transition: var(--transition-normal);
}

.highlight:hover {
  background: var(--bg-glass);
  border-color: var(--border-accent);
  transform: translateY(-5px);
}

.highlight-icon {
  font-size: 1rem;
  /* width: 60px;
  height: 60px; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: var(--gradient-secondary); */
  border-radius: 50%;
  flex-shrink: 0;
}

.highlight-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.highlight-text p {
  color: var(--text-muted);
}

/* Specifications Section */
.specs-section {
 
  background: var(--bg-secondary);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.spec-card {
  background: var(--bg-card);
  padding: var(--card-padding);
  border-radius: 20px;
  border: 1px solid var(--border-primary);
  text-align: center;
  transition: var(--transition-normal);
}

.spec-card:hover {
  background: var(--bg-glass);
  border-color: var(--border-accent);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.spec-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.spec-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.spec-card ul {
  list-style: none;
  text-align: left;
}

.spec-card li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-primary);
}

.spec-card li:last-child {
  border-bottom: none;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  padding: var(--card-padding);
  border-radius: 20px;
  border: 1px solid var(--border-primary);
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.1;
  transition: var(--transition-slow);
}

.feature-card:hover::before {
  left: 0;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-accent);
  box-shadow: 0 20px 40px var(--shadow-glow);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  text-align: left;
  hyphens: auto;

}

.feature-metric {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

/* Gallery Section */
.gallery-section {
  background: var(--bg-secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: var(--transition-normal);
}

.gallery-item:hover {
  transform: scale(1.2);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: brightness(0.8); */
  transition: var(--transition-normal);
}

.gallery-img:hover {
  filter: brightness(0.7);
  /* transform: scale(1.05); */
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.744), rgba(0, 0, 0, 0.744));
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay{
  transform: translateY(0);
  scale:1.05;
  /* transform: scale(1.05); */
  /* filter: brightness(0.8); */
}

.gallery-overlay h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.gallery-overlay p {
  color: var(--text-muted);
}

/* Keywords Section */
.keywords-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.keyword-tag {
  background: var(--bg-card);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  border: 1px solid var(--border-primary);
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  cursor: pointer;
}

.keyword-tag:hover {
  background: var(--gradient-secondary);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Buy Section */
.buy-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.buy-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0.05;
}

.buy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.buy-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.buy-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.buy-features {
  display: grid;
  gap: 0.75rem;
}

.buy-feature {
  color: var(--text-accent);
  font-weight: 500;
}

.buy-action {
  text-align: center;
}

.price-tag {
  margin-bottom: 2rem;
}

.price-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.buy-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gradient-primary);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition-normal);
  box-shadow: 0 8px 30px var(--shadow-primary);
  margin-bottom: 1rem;
}

.buy-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--shadow-primary);
}

.buy-icon {
  font-size: 1.2rem;
}

.disclaimer {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Footer */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-primary);
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--text-accent);
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-normal);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-primary);
}

/* Responsive Design */
@media (max-width: 768px) {

  .container {
    display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;}

  /* Navigation */
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: 90vh;
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 1rem;
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    padding: 1rem 0;
    font-size: 1.1rem;
    width: 100vw;
    text-align: center;
    border-bottom: 1px solid var(--border-primary);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  /* Focus Underline */
  /* Mobile Focus State */
  .nav-link:focus,
  .nav-link:focus-visible {
    background: rgba(139, 92, 246, 0.1);
    outline: none;
    box-shadow: inset 0 0 0 2px var(--primary-purple);
  }


  .cta-nav {
        width: fit-content;
    margin-bottom: 4rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    border-bottom: none;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    z-index: 1001;
    transition: all 0.3s ease;
  }

  .hamburger:hover {
    opacity: 0.8;
  }

  .hamburger span {
    width: 27px;
    height: 3.5px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--text-accent);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--text-accent);
  }

  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  /* Hero Section */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }

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

  .headphone-img {
    width: 300px;
    height: 300px;
  }

  /* Sections */
  .section {
   
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* Cards and Grids */
  .specs-grid,
  .features-grid,
  .gallery-grid {
    
    grid-template-columns: 1fr;
    width:auto;
    max-width: 325px;
    gap: 1.5rem;
    
  }

  /* === ON SCROLL FADE-IN EFFECT === */
/* .highlight.visible {
  opacity: 1;
  transform: translateY(0);
} */

/* === GLOW BACKGROUND EFFECT === */
/* .highlight::before {
  content: "";
  position: absolute;
  height: 100vh;
  inset: 0;
  border-radius: 1rem;
  background: radial-gradient(circle, rgba(63, 136, 255, 0.15) 0%, transparent 70%);
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.highlight:hover::before {
  opacity: 1;
} */

/* === HOVER ELEVATION EFFECT === */
.highlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
  border-color: #a855f7;
}

/* === ICON STYLING === */
.highlight-icon {
  /* font-size: 2rem;
  margin-bottom: 1rem;
  color: #3f88ff; */
  transition: transform 0.3s ease, color 0.3s ease;
}

.highlight:hover .highlight-icon {
  transform: scale(1.2);
  color: #a855f7;
}
  
  .key-highlights {
    /* border: 1px solid #ffff; */
    gap: 1.5rem;
    padding:2rem;
  }

  .highlight {
    /* border: 1px solid #ffff; */
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  /* Buy Section */
  .buy-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .buy-title {
    font-size: 2rem;
  }

  .price {
    font-size: 2.5rem;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-links {
    gap: 1rem;
  }

  /* Keywords */
  .keywords-container {
    gap: 0.75rem;
  }

  .keyword-tag {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading Animation */
@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.loading {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}

/* Ensure hamburger is clickable */
.hamburger {
  position: relative;
  z-index: 1001;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  -webkit-tap-highlight-color: transparent;
}

.hamburger * {
  pointer-events: none;
}

/* Mobile touch improvements */
@media (max-width: 768px) {
  .nav-link {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .hamburger {
    min-width: 25px;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
  }
} 

/* Accessibility Improvements */
/* Loading States */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-top: 2px solid #8b5cf6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
.nav-link:focus,
.search-input:focus {
  outline: 2px solid #8b5cf6;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgb(46, 13, 98);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #7c3aed, #db2777);
}

/* Selection styles */
::selection {
  background: rgba(139, 92, 246, 0.3);
  color: #ffffff;
}

::-moz-selection {
  background: rgba(139, 92, 246, 0.3);
  color: #ffffff;
}

/* Skip to content link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #8b5cf6;
  color: #ffffff;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 8px;
  z-index: 10000;
  font-weight: 600;
}

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

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-image img,
  .review-image img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Print Styles */
@media print {
  .header,
  .newsletter,
  .footer {
    display: none;
  }

  .hero {
    padding: 20px 0;
  }

  .review-card {
    break-inside: avoid;
    margin-bottom: 10px;
  }
}

.gaming-card {
  position: relative;
  width: auto;
  padding: 2px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff1493, #a600ff, #1e90ff);
  background-size: 200% 200%;
  animation: pulseBorder 6s ease infinite;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gaming-card:hover {
  transform: scale(1.05);
  background-position: right center;
  backdrop-filter:brightness(0);
  background: linear-gradient(-45deg, rgba(255, 20, 147,0.6), rgba(166, 0, 255,0.5), rgba(30, 144, 255,0.25));
}

.card-content {
  background: #111827;
  border-radius: 18px;
  padding: 20px;
  color: white;
  text-align: center;
}

@keyframes pulseBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

