/* CHEAP PC RESIDENT - Cyberpunk Master Stylesheet (Premium Overhaul) */
/* Author: Shaurya Shashi | Company: QuikCode */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@400;600;800;900&family=Share+Tech+Mono&display=swap');

:root {
  --neon-cyan: #00ffd1;
  --neon-purple: #a855f7;
  --neon-pink: #ff2e9b;
  --dark-bg: #050508;
  --card-bg: rgba(10, 10, 18, 0.6);
  --glass-border: rgba(255, 255, 255, 0.05);
  --font-title: 'Orbitron', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  --transition-speed: 0.4s;
  --glow-cyan: 0 0 15px rgba(0, 255, 209, 0.4);
  --glow-pink: 0 0 15px rgba(255, 46, 155, 0.4);
}

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

body {
  background-color: var(--dark-bg);
  color: #f1f1f6;
  font-family: var(--font-body);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Moving Neon Spheres in Background */
.ambient-glow-sphere {
  position: fixed;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.sphere-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--neon-cyan) 0%, rgba(0, 255, 209, 0) 70%);
  top: -10%;
  left: 10%;
  animation: float-bg 25s infinite alternate ease-in-out;
}

.sphere-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--neon-purple) 0%, rgba(168, 85, 247, 0) 70%);
  bottom: -15%;
  right: 10%;
  animation: float-bg 30s infinite alternate-reverse ease-in-out;
}

.sphere-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--neon-pink) 0%, rgba(255, 46, 155, 0) 70%);
  top: 40%;
  right: 25%;
  animation: float-bg 20s infinite alternate ease-in-out;
}

@keyframes float-bg {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -50px) scale(1.15); }
  100% { transform: translate(-30px, 40px) scale(0.9); }
}

/* Cyber grid mesh overlay on slides */
.cyber-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 255, 209, 0.02) 1px, transparent 1px), 
    linear-gradient(90deg, rgba(0, 255, 209, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
}

/* Custom Cursor Glow */
#dynamic-glow {
  position: fixed;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 255, 209, 0.25) 0%, rgba(168, 85, 247, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 99999;
  transition: transform 0.1s ease-out, background 0.2s ease;
  mix-blend-mode: screen;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #06060a;
}
::-webkit-scrollbar-thumb {
  background: var(--neon-purple);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-pink);
}

/* Glassmorphism base layout */
.glass {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
  border-radius: 12px;
}

/* Cybernetic clipped corners */
.cyber-card-clip {
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.glow-border-cyan {
  transition: var(--transition-speed);
}
.glow-border-cyan:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 25px rgba(0, 255, 209, 0.35);
}

.glow-border-purple {
  transition: var(--transition-speed);
}
.glow-border-purple:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.35);
}

.glow-border-pink {
  transition: var(--transition-speed);
}
.glow-border-pink:hover {
  border-color: var(--neon-pink);
  box-shadow: 0 0 25px rgba(255, 46, 155, 0.35);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.logo {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 2px;
  text-decoration: none;
  background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(0, 255, 209, 0.3);
}

header nav {
  display: flex;
  gap: 2rem;
}

header nav a {
  font-family: var(--font-title);
  text-decoration: none;
  color: #c9c9df;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-speed);
  position: relative;
}

header nav a:hover, header nav a.active {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px rgba(0, 255, 209, 0.6);
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--neon-cyan);
  transition: var(--transition-speed);
}

header nav a:hover::after, header nav a.active::after {
  width: 100%;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 5px;
  transition: all 0.3s ease;
}

/* System HUD Status line */
.hud-status-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 0.4rem 5%;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #7d7d96;
  z-index: 998;
  letter-spacing: 1px;
}

.hud-status-bar span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hud-dot {
  width: 6px;
  height: 6px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-cyan);
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Master 3D Scroller Homepage */
.horizontal-scroll-container {
  display: flex;
  flex-direction: row;
  width: 500vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  will-change: transform;
}

.slide {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 8%;
  perspective: 1200px;
  overflow: hidden;
  background: transparent;
}

.slide-content-3d {
  width: 100%;
  max-width: 1240px;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  align-items: center;
  gap: 5rem;
  z-index: 2;
}

/* Holographic Mascot Scanner Circle */
.hologram-scanner {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scanner-ring-outer {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed rgba(0, 255, 209, 0.4);
  border-radius: 50%;
  animation: rotateClockwise 25s linear infinite;
  box-shadow: 0 0 25px rgba(0, 255, 209, 0.1);
}

.scanner-ring-inner {
  position: absolute;
  width: 85%;
  height: 85%;
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-left: 3px solid var(--neon-purple);
  border-right: 3px solid var(--neon-pink);
  border-radius: 50%;
  animation: rotateCounterClockwise 15s linear infinite;
}

.mascot-container-hologram {
  position: relative;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 35px rgba(0, 255, 209, 0.3);
}

.mascot-image-holo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: holoFloat 4s ease-in-out infinite;
}

.hologram-grid-scan {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 255, 209, 0) 95%, rgba(0, 255, 209, 0.5) 100%);
  background-size: 100% 20px;
  pointer-events: none;
  animation: scanning 3s linear infinite;
}

@keyframes scanning {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

@keyframes holoFloat {
  0%, 100% { transform: translateY(0px) scale(1); filter: brightness(1) contrast(1.1); }
  50% { transform: translateY(-10px) scale(1.03); filter: brightness(1.2) contrast(1.2); }
}

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

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

/* Slide info texts */
.slide-info {
  flex: 1.2;
}

.slide-tag {
  font-family: var(--font-mono);
  color: var(--neon-pink);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: bold;
  margin-bottom: 1rem;
  display: inline-block;
  text-shadow: 0 0 8px rgba(255, 46, 155, 0.4);
}

.slide h1 {
  font-family: var(--font-title);
  font-size: 4.4rem;
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 30%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.slide p.lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #c0c0d8;
  margin-bottom: 2.8rem;
  max-width: 580px;
}

/* Cyberpunk Decal details */
.cyber-decal-box {
  border-left: 3px solid var(--neon-cyan);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  font-family: var(--font-mono);
  color: #8c8cab;
  font-size: 0.85rem;
}

/* Interactive CTA buttons */
.btn-cyber {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-title);
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: none;
  font-size: 0.9rem;
  overflow: hidden;
  transition: var(--transition-speed);
  border: 1px solid var(--neon-cyan);
  background: transparent;
  color: var(--neon-cyan);
  cursor: pointer;
  clip-path: polygon(0 0, 90% 0, 100% 10px, 100% 100%, 10% 100%, 0 calc(100% - 10px));
}

.btn-cyber.primary {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: #050508;
  border: none;
}

.btn-cyber:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 255, 209, 0.5);
}

.btn-cyber::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s;
}

.btn-cyber:hover::before {
  left: 100%;
}

/* Specific Spotlight Cards */
.spotlight-card {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
}

.spotlight-card::before {
  content: 'SPOTLIGHT // CATALOG';
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.15);
}

.spotlight-media {
  flex: 1.3;
  height: 380px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 209, 0.25);
  box-shadow: 0 0 30px rgba(0, 255, 209, 0.1);
  position: relative;
}

.spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.spotlight-card:hover .spotlight-media img {
  transform: scale(1.04);
}

.spotlight-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-info h2 {
  font-family: var(--font-title);
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.badge-tier {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: #050508;
  font-family: var(--font-title);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 900;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px rgba(0, 255, 209, 0.3);
}

/* Status progression details inside cards */
.hud-stat-group {
  margin-bottom: 2rem;
}

.hud-stat-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #a4a4be;
  margin-bottom: 0.4rem;
}

.hud-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
}

.hud-progress-fill {
  height: 100%;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
}

/* Curated Bundles grid */
.bundles-grid {
  display: flex;
  gap: 2rem;
  width: 100%;
}

.bundle-mini-card {
  flex: 1;
  padding: 2.5rem 2rem;
  transition: var(--transition-speed);
  position: relative;
  overflow: hidden;
}

.bundle-decor-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-pink), transparent);
}

.bundle-mini-card h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.bundle-mini-card p {
  color: #b1b1c7;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

/* Testimonial card (Slide 5 overhauls) */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
  width: 100%;
  max-width: 980px;
}

.testimonial-card {
  padding: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
}

.testimonial-card::before {
  content: 'COMMS RECEIVED // SECURE';
  position: absolute;
  top: 10px;
  right: 15px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.1);
}

.testimonial-stars {
  color: #ffb700;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  text-shadow: 0 0 8px rgba(255, 183, 0, 0.4);
}

.testimonial-text {
  font-style: italic;
  line-height: 1.6;
  color: #c4c4dc;
  margin-bottom: 1.4rem;
}

.testimonial-author {
  font-family: var(--font-mono);
  font-weight: bold;
  color: var(--neon-cyan);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-author::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--neon-cyan);
  box-shadow: 0 0 6px var(--neon-cyan);
}

/* Floating WhatsApp button */
.floating-wa-btn {
  position: fixed;
  bottom: 45px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: pulse 2s infinite;
}

.floating-wa-btn:hover {
  transform: scale(1.15) rotate(10deg);
  background-color: #20ba5a;
}

.floating-wa-btn .tooltip {
  position: absolute;
  left: -110px;
  top: 15px;
  background: var(--dark-bg);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.floating-wa-btn:hover .tooltip {
  opacity: 1;
}

/* General Pages Container */
.page-container {
  padding: 8rem 5% 6rem;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.page-title {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-align: center;
  background: linear-gradient(to right, #ffffff, var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.page-desc {
  text-align: center;
  color: #a4a4be;
  margin-bottom: 4rem;
  font-size: 1.1rem;
}

/* Category Grid Page */
.category-deck {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.category-card {
  padding: 4rem 2rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-speed);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.category-card h3 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.category-card p {
  color: #a5a5c2;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Shop Layout filter systems */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
}

.filter-sidebar {
  padding: 2.5rem 2rem;
  align-self: start;
}

.filter-group {
  margin-bottom: 2.2rem;
}

.filter-group h4 {
  font-family: var(--font-title);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  color: var(--neon-cyan);
}

/* Custom inputs, searchbars, select and inputs styling */
.search-wrapper {
  position: relative;
  margin-bottom: 2.5rem;
  z-index: 2;
}

.search-input {
  width: 100%;
  padding: 1.1rem 1.5rem 1.1rem 3.5rem;
  border-radius: 8px;
  background: rgba(10, 10, 15, 0.9);
  border: 1px solid var(--glass-border);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition-speed);
}

.search-input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 255, 209, 0.25);
}

.search-icon {
  position: absolute;
  left: 1.4rem;
  top: 1.15rem;
  color: rgba(0, 255, 209, 0.5);
}

.chip-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: #cccccc;
  padding: 0.5rem 1.1rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s;
}

.chip-btn:hover, .chip-btn.active {
  background: var(--neon-cyan);
  color: #050508;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 255, 209, 0.35);
}

.custom-select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 6px;
  background: rgba(10, 10, 15, 0.9);
  border: 1px solid var(--glass-border);
  color: #ffffff;
  outline: none;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition-speed);
}

.custom-select:focus {
  border-color: var(--neon-purple);
}

/* Shop Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

/* Product Card Styling */
.product-card {
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon-cyan);
  box-shadow: 0 8px 30px rgba(0, 255, 209, 0.15);
}

.card-media {
  width: 100%;
  height: 190px;
  overflow: hidden;
  position: relative;
  background: rgba(5, 5, 8, 0.95);
}

.card-media img, .card-media canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .card-media img {
  transform: scale(1.08);
}

.platform-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-family: var(--font-title);
  font-weight: bold;
  z-index: 2;
  color: #ffffff;
}

.platform-badge.steam { background: #1b2838; border: 1px solid #101822; }
.platform-badge.rockstar { background: #fcaf17; color: #000; }
.platform-badge.ubisoft { background: #2c1254; border: 1px solid #4a2185; }
.platform-badge.ea-app { background: #de5c1b; border: 1px solid #f9712a; }

.card-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-info h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  line-height: 1.3;
}

.card-tagline {
  font-size: 0.8rem;
  color: #8c8cab;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.price-box {
  display: flex;
  flex-direction: column;
}

.price-original {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: #72728f;
}

.price-current {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--neon-cyan);
  font-weight: 800;
  text-shadow: 0 0 5px rgba(0, 255, 209, 0.2);
}

/* Details Product breakdowns Page */
.product-details-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.details-media-box {
  width: 100%;
}

.main-preview-screen {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0,255,209,0.15);
  margin-bottom: 1.5rem;
  background: #000;
  position: relative;
}

.main-preview-screen img, .main-preview-screen canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.spec-tile {
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.spec-tile .icon {
  font-size: 1.8rem;
  color: var(--neon-cyan);
}

.spec-tile div h5 {
  font-family: var(--font-title);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #7d7d96;
}

.spec-tile div p {
  font-weight: bold;
  font-size: 1rem;
  color: #ffffff;
}

.details-info-box h2 {
  font-family: var(--font-title);
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.details-platform {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-family: var(--font-title);
  font-weight: bold;
  font-size: 0.8rem;
  margin-bottom: 2rem;
}

.details-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #c4c4dc;
  margin-bottom: 2.5rem;
}

.details-pricing {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--glass-border);
}

.details-pricing .current {
  font-family: var(--font-title);
  font-size: 3rem;
  color: var(--neon-cyan);
  font-weight: 900;
  text-shadow: 0 0 15px rgba(0,255,209,0.3);
}

.details-pricing .original {
  font-size: 1.4rem;
  text-decoration: line-through;
  color: #6a6a8b;
}

/* About Narrative Page & Custom Branding guides uploads */
.about-narrative {
  max-width: 800px;
  margin: 0 auto 5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d1d1e4;
}

.about-narrative p {
  margin-bottom: 1.5rem;
}

.branding-toolbox {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
}

.branding-toolbox h3 {
  font-family: var(--font-title);
  margin-bottom: 1.5rem;
  text-align: center;
  color: #ffffff;
}

.color-palette-showcase {
  display: flex;
  justify-content: space-around;
  margin-bottom: 3rem;
}

.color-swatch {
  text-align: center;
}

.swatch-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 0.8rem;
  border: 2px solid #ffffff;
  box-shadow: 0 0 15px rgba(255,255,255,0.1);
}

.branding-uploader-area {
  border: 2px dashed rgba(0, 255, 209, 0.3);
  padding: 2.5rem;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-speed);
}

.branding-uploader-area:hover {
  border-color: var(--neon-cyan);
  background: rgba(0, 255, 209, 0.03);
}

.branding-uploader-area p {
  margin-top: 1rem;
  font-weight: bold;
}

.logo-preview-box {
  margin-top: 2rem;
  display: none;
  justify-content: center;
}

.logo-preview-box img {
  max-height: 100px;
  border: 1px solid var(--neon-cyan);
  padding: 0.5rem;
  border-radius: 4px;
}

/* Vertical Accordion FAQ */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-speed);
}

.faq-question {
  padding: 1.5rem;
  background: rgba(255,255,255,0.02);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: bold;
  color: #ffffff;
  transition: all 0.3s;
}

.faq-question:hover {
  background: rgba(0, 255, 209, 0.05);
  color: var(--neon-cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.5rem;
  line-height: 1.6;
  color: #ababcb;
  font-size: 0.95rem;
}

.faq-item.active {
  border-color: var(--neon-cyan);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 1.5rem;
  border-top: 1px solid var(--glass-border);
  background: rgba(0,0,0,0.2);
}

.faq-chevron {
  transition: transform 0.3s;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--neon-cyan);
}

/* Contact Cyberpunk Form */
.contact-layout {
  max-width: 650px;
  margin: 0 auto;
  padding: 3rem;
}

.contact-layout h3 {
  font-family: var(--font-title);
  margin-bottom: 2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  font-family: var(--font-title);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 0.6rem;
}

.form-input {
  width: 100%;
  padding: 1rem;
  background: rgba(10, 10, 15, 0.9);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition-speed);
}

.form-input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 255, 209, 0.2);
}

/* Custom Notification Toast */
.toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(5, 5, 8, 0.98);
  border: 1px solid var(--neon-cyan);
  box-shadow: 0 0 25px rgba(0,255,209,0.4);
  padding: 1.2rem 2.2rem;
  border-radius: 6px;
  font-family: var(--font-title);
  font-weight: bold;
  color: var(--neon-cyan);
  z-index: 10000;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* Policies layouts (Terms & Privacy) */
.policy-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 3.5rem;
  line-height: 1.8;
  color: #ccccdd;
}

.policy-box h3 {
  font-family: var(--font-title);
  color: #ffffff;
  margin: 2.5rem 0 1.2rem;
}

.policy-box p {
  margin-bottom: 1.5rem;
}

.policy-box ul {
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.policy-box ul li {
  margin-bottom: 0.6rem;
}

/* Administrative panel gates and CRUD table layout */
.security-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #030305;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gate-card {
  padding: 3.5rem;
  text-align: center;
  width: 100%;
  max-width: 450px;
  border: 1px solid var(--neon-purple);
}

.gate-card h2 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--neon-purple);
}

.admin-dashboard {
  display: none;
}

.admin-header-actions {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
}

table.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

table.admin-table th, table.admin-table td {
  padding: 1.2rem;
  border-bottom: 1px solid var(--glass-border);
}

table.admin-table th {
  font-family: var(--font-title);
  background: rgba(255,255,255,0.02);
  color: var(--neon-cyan);
}

table.admin-table tr:hover {
  background: rgba(255,255,255,0.01);
}

/* CRUD Modal style */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: none;
  justify-content: center;
  align-items: center;
}

.modal-card {
  width: 100%;
  max-width: 600px;
  padding: 2.5rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-card h3 {
  font-family: var(--font-title);
  margin-bottom: 2rem;
  color: var(--neon-cyan);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #7d7d96;
}

/* Footer Credit */
footer {
  background: #030305;
  padding: 3rem 5%;
  border-top: 1px solid rgba(255,255,255,0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.credit-watermark {
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  color: #7d7d96;
}

.credit-watermark span {
  font-weight: 900;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan), var(--neon-purple), var(--neon-pink));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite, glowPulse 2.5s infinite alternate;
}

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

@keyframes glowPulse {
  0% { text-shadow: 0 0 4px rgba(0, 255, 209, 0.2), 0 0 8px rgba(255, 46, 155, 0.2); }
  100% { text-shadow: 0 0 12px rgba(0, 255, 209, 0.8), 0 0 20px rgba(255, 46, 155, 0.8); }
}

.footer-logo {
  font-family: var(--font-title);
  font-weight: bold;
}

/* Skeleton Loading Effect */
.skeleton-card {
  height: 380px;
  border-radius: 12px;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.skeleton-media {
  height: 180px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.skeleton-text {
  height: 20px;
  background: rgba(255,255,255,0.02);
  margin-bottom: 1rem;
  border-radius: 4px;
}

.skeleton-text.short {
  width: 60%;
}

.skeleton-text.price {
  width: 40%;
  height: 30px;
}

.skeleton-media, .skeleton-text {
  animation: skeleton-pulse 1.4s infinite ease-in-out;
}

@keyframes skeleton-pulse {
  0% { opacity: 0.3; }
  50% { opacity: 0.7; }
  100% { opacity: 0.3; }
}

#upcoming-showcase-container {
  width: 460px;
  height: 500px;
}

/* CROSS-DEVICE DUAL COMPATIBILITY ENGINE (Mobile overrides < 768px) */
@media (max-width: 768px) {
  #upcoming-showcase-container {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 460px !important;
  }

  #dynamic-glow {
    display: none !important;
  }
  
  header nav {
    position: fixed;
    right: 0;
    height: 92vh;
    top: 8vh;
    background-color: rgba(5, 5, 8, 0.99);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 75%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    padding: 3rem 0;
    box-shadow: -5px 0 25px rgba(0,0,0,0.6);
    border-left: 1px solid var(--glass-border);
  }

  header nav.active {
    transform: translateX(0%);
  }

  .burger {
    display: block;
  }

  /* Flatten 3D Scroller on Mobile completely */
  .horizontal-scroll-container {
    width: 100vw !important;
    height: auto !important;
    overflow-y: auto !important;
    display: block !important;
  }

  .slide {
    width: 100vw !important;
    height: auto !important;
    min-height: 100vh;
    display: block !important;
    padding: 7rem 5% 5rem !important;
    transform: none !important;
    perspective: none !important;
  }

  .slide-content-3d {
    flex-direction: column !important;
    gap: 3rem !important;
    transform: none !important;
  }

  .hologram-scanner {
    width: 260px !important;
    height: 260px !important;
    margin: 0 auto;
  }

  .slide h1 {
    font-size: 2.8rem !important;
  }

  .spotlight-card {
    flex-direction: column !important;
    padding: 2rem 1.5rem !important;
  }

  .spotlight-media {
    height: 250px !important;
  }

  .bundles-grid {
    flex-direction: column !important;
  }

  .testimonial-grid {
    grid-template-columns: 1fr !important;
  }

  /* Shop page */
  .shop-layout {
    grid-template-columns: 1fr !important;
  }

  /* Category */
  .category-deck {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  /* Product details */
  .product-details-container {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .main-preview-screen {
    height: 250px !important;
  }

  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 2.5rem 5% 5rem;
  }

  .hud-status-bar {
    font-size: 0.65rem;
    padding: 0.4rem 3%;
  }
}
