@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --color-bg: #0f172a;
  --color-bg-2: #1e293b;
  --color-bg-white: #1a2235;
  --color-bg-rgb: 15, 23, 42;
  --color-bg-white-rgb: 26, 34, 53;
  --color-surface: rgba(255,255,255,0.03);
  --color-surface-hover: rgba(34,211,238,0.08);

  --color-text: #e2e8f0;
  --color-text-secondary: #94a3b8;
  --color-text-muted: #64748b;

  --color-border: rgba(226,232,240,0.1);
  --color-border-light: rgba(226,232,240,0.05);

  --color-accent: #067fe1;
  --color-accent-2: #e207c6;
  --color-accent-3: #e3ba3f;
  --color-accent-warm: #e28707;
  --color-accent-soft: #1b2731;
  --color-accent-2-soft: #301b2e;
  --color-accent-3-soft: #2e2a1d;
  --color-accent-warm-soft: #31281b;

  --color-star: #e3ba3f;
  --color-success: #22d3ee;
  --color-badge: #e207c6;
  --color-info: #22d3ee;

  --color-footer-bg: #060b18;
  --color-footer-text: #e2e8f0;
  --color-footer-muted: #64748b;
  --color-footer-link: #94a3b8;
  --color-footer-border: rgba(34,211,238,0.15);
  --color-footer-social-bg: rgba(34,211,238,0.08);
  --color-footer-social-border: rgba(34,211,238,0.2);

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4), 0 0 0 1px rgba(34,211,238,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.5), 0 0 0 1px rgba(34,211,238,0.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.6), 0 0 24px rgba(34,211,238,0.08);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.7), 0 0 40px rgba(34,211,238,0.12);
}

body {
  background: var(--color-bg);
  background-image:
    linear-gradient(rgba(34,211,238,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  background-attachment: fixed;
}

@keyframes cyber-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(34,211,238,0.2), 0 0 20px rgba(34,211,238,0.15); }
  50% { box-shadow: 0 0 0 1px rgba(34,211,238,0.4), 0 0 32px rgba(34,211,238,0.25); }
}

@keyframes scan-line {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.announcement-bar {
  background: #050a14;
  border-bottom: 1px solid rgba(34,211,238,0.2);
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #22d3ee;
}
.announcement-bar strong { color: #e2e8f0; }

.site-header {
  border-bottom: 1px solid rgba(34,211,238,0.18);
  background: rgba(15,23,42,0.85);
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #22d3ee 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nav-link.active {
  color: #22d3ee;
  background: rgba(34,211,238,0.1);
  border: 1px solid rgba(34,211,238,0.25);
}

.hero {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(34,211,238,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 100%, rgba(2,127,225,0.08) 0%, transparent 55%),
    linear-gradient(180deg, #0f172a 0%, #0a1020 100%);
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,211,238,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content { text-align: center; position: relative; z-index: 1; }
.hero-actions { justify-content: center; }
.hero-subtitle { margin-left: auto; margin-right: auto; }

.hero-badge {
  font-family: 'IBM Plex Mono', monospace;
  background: rgba(34,211,238,0.1);
  color: #22d3ee;
  border: 1px solid rgba(34,211,238,0.3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-badge::before {
  content: '> ';
  color: #22d3ee;
  opacity: 0.7;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #e2e8f0 0%, #22d3ee 60%, #e2e8f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.5px;
}
.section-title::before {
  content: '// ';
  font-family: 'IBM Plex Mono', monospace;
  color: #22d3ee;
  font-size: 0.7em;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.product-card {
  background: linear-gradient(180deg, #1a2235 0%, #151c2e 100%);
  border: 1px solid rgba(34,211,238,0.12);
  position: relative;
  overflow: hidden;
}
.product-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #22d3ee, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card:hover {
  border-color: rgba(34,211,238,0.45);
  box-shadow:
    0 0 0 1px rgba(34,211,238,0.3),
    0 0 24px rgba(34,211,238,0.2),
    0 0 48px rgba(34,211,238,0.1),
    0 12px 32px rgba(0,0,0,0.5);
  transform: translateY(-4px);
}
.product-card:hover::after { opacity: 1; }

.card-image-wrapper {
  background: #0a1020;
  border-bottom: 1px solid rgba(34,211,238,0.1);
}

.card-brand {
  font-family: 'IBM Plex Mono', monospace;
  color: #22d3ee;
  font-size: 10px;
  letter-spacing: 0.2em;
}

.card-title { color: #e2e8f0; }
.card-title a:hover { color: #22d3ee; }
.price-current { color: #e2e8f0; }
.price-original { color: #64748b; }

.card-badge {
  background: #e207c6;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.05em;
  box-shadow: 0 0 16px rgba(226,7,198,0.5);
}

.card-quick-view {
  background: rgba(34,211,238,0.95);
  color: #0f172a;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(135deg, #067fe1 0%, #22d3ee 100%);
  color: #0f172a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  box-shadow: 0 0 0 1px rgba(34,211,238,0.4), 0 0 20px rgba(34,211,238,0.3);
}
.btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 0 1px rgba(34,211,238,0.6), 0 0 32px rgba(34,211,238,0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(34,211,238,0.4);
  color: #22d3ee;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}
.btn-outline:hover {
  background: rgba(34,211,238,0.1);
  border-color: #22d3ee;
  color: #22d3ee;
  box-shadow: 0 0 20px rgba(34,211,238,0.2);
}

.btn-cta {
  background: linear-gradient(135deg, #067fe1 0%, #22d3ee 100%);
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  box-shadow: 0 0 0 1px rgba(34,211,238,0.3), 0 0 16px rgba(34,211,238,0.2);
}
.btn-cta:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 0 1px rgba(34,211,238,0.6), 0 0 28px rgba(34,211,238,0.4);
}

.category-card {
  background: #1a2235;
  border: 1px solid rgba(34,211,238,0.12);
}
.category-card:hover {
  border-color: rgba(34,211,238,0.4);
  box-shadow: 0 0 24px rgba(34,211,238,0.15);
}
.category-icon {
  background: rgba(34,211,238,0.1);
  color: #22d3ee;
  border: 1px solid rgba(34,211,238,0.25);
}
.category-card h3 { color: #e2e8f0; }

.filter-btn {
  background: #1a2235;
  border: 1px solid rgba(34,211,238,0.15);
  color: #94a3b8;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
}
.filter-btn:hover { border-color: #22d3ee; color: #22d3ee; }
.filter-btn.active {
  background: rgba(34,211,238,0.15);
  border-color: #22d3ee;
  color: #22d3ee;
  box-shadow: 0 0 16px rgba(34,211,238,0.2);
}

.sort-select, .category-filters select {
  background: #1a2235;
  border: 1px solid rgba(34,211,238,0.15);
  color: #e2e8f0;
}

.page-btn, .page-num {
  background: #1a2235;
  border: 1px solid rgba(34,211,238,0.15);
  color: #94a3b8;
}
.page-num.active {
  background: rgba(34,211,238,0.15);
  border-color: #22d3ee;
  color: #22d3ee;
  box-shadow: 0 0 12px rgba(34,211,238,0.25);
}

.newsletter-section {
  background: linear-gradient(135deg, #0f172a 0%, #1a1030 100%);
  border-top: 1px solid rgba(226,7,198,0.2);
  border-bottom: 1px solid rgba(226,7,198,0.2);
}
.newsletter-form input {
  background: #0a1020;
  border: 1px solid rgba(226,7,198,0.25);
  color: #e2e8f0;
}
.newsletter-form input:focus { border-color: #e207c6; }
.newsletter-form button {
  background: linear-gradient(135deg, #e207c6 0%, #067fe1 100%);
  color: #fff;
  box-shadow: 0 0 20px rgba(226,7,198,0.3);
}

.faq-section { background: linear-gradient(180deg, #0f172a 0%, #1a1030 100%); }
.faq-item {
  background: #1a2235;
  border: 1px solid rgba(226,7,198,0.15);
}
.faq-item[open] {
  border-color: rgba(226,7,198,0.5);
  box-shadow: 0 0 20px rgba(226,7,198,0.1);
}
.faq-question { color: #e2e8f0; }
.faq-item[open] .faq-question::after { color: #e207c6; }

.guide-section { background: linear-gradient(180deg, #0f172a 0%, #1f1a0a 100%); }
.guide-card {
  background: #1a2235;
  border: 1px solid rgba(226,135,7,0.15);
}
.guide-card:hover {
  border-color: rgba(226,135,7,0.5);
  box-shadow: 0 0 24px rgba(226,135,7,0.12);
}
.guide-number {
  background: #e28707;
  font-family: 'IBM Plex Mono', monospace;
  box-shadow: 0 0 16px rgba(226,135,7,0.4);
}

.testimonials-section { background: linear-gradient(180deg, #0f172a 0%, #1f1a08 100%); }
.testimonial-card {
  background: #1a2235;
  border: 1px solid rgba(227,186,63,0.15);
}
.testimonial-card:hover {
  border-color: rgba(227,186,63,0.4);
  box-shadow: 0 0 20px rgba(227,186,63,0.1);
}
.testimonial-avatar {
  background: rgba(227,186,63,0.15);
  color: #e3ba3f;
  border: 1px solid rgba(227,186,63,0.3);
}

.stats-section {
  background: linear-gradient(135deg, #067fe1 0%, #e207c6 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.stat-number { font-family: 'Space Grotesk', sans-serif; }
.stat-label { font-family: 'IBM Plex Mono', monospace; text-transform: uppercase; letter-spacing: 0.15em; }

.top-picks-section { background: linear-gradient(180deg, #0f172a 0%, #1f1908 100%); }
.top-pick-item {
  background: #1a2235;
  border: 1px solid rgba(226,135,7,0.15);
}
.top-pick-item:hover {
  border-color: rgba(226,135,7,0.5);
  box-shadow: 0 0 24px rgba(226,135,7,0.15);
}
.top-pick-rank {
  color: #e28707;
  font-family: 'Space Grotesk', sans-serif;
}
.top-pick-tag {
  background: rgba(226,135,7,0.15);
  color: #e28707;
  border: 1px solid rgba(226,135,7,0.3);
  font-family: 'IBM Plex Mono', monospace;
}

.comparison-table {
  background: #1a2235;
  border: 1px solid rgba(34,211,238,0.15);
}
.comparison-table th {
  background: #0a1020;
  color: #22d3ee;
  font-family: 'IBM Plex Mono', monospace;
  border-bottom: 1px solid rgba(34,211,238,0.2);
}
.comparison-table td { border-bottom: 1px solid rgba(34,211,238,0.08); color: #e2e8f0; }
.comparison-table tbody tr:hover { background: rgba(34,211,238,0.05); }

.trust-section { border-bottom: 1px solid rgba(34,211,238,0.1); }
.trust-item svg { color: #22d3ee; }
.trust-item strong { color: #e2e8f0; }
.mini-badge {
  background: #1a2235;
  border: 1px solid rgba(34,211,238,0.2);
  color: #94a3b8;
  font-family: 'IBM Plex Mono', monospace;
}
.mini-badge svg { color: #22d3ee; }

.breadcrumb {
  background: #0a1020;
  border-bottom: 1px solid rgba(34,211,238,0.1);
  font-family: 'IBM Plex Mono', monospace;
}

.product-brand-link {
  color: #22d3ee;
  font-family: 'IBM Plex Mono', monospace;
}

.product-title {
  font-family: 'Space Grotesk', sans-serif;
  color: #e2e8f0;
}

.product-price-block {
  background: linear-gradient(135deg, #1a2235 0%, #151c2e 100%);
  border: 1px solid rgba(34,211,238,0.2);
  box-shadow: inset 0 0 0 1px rgba(34,211,238,0.05);
}
.price-big { color: #e2e8f0; font-family: 'Space Grotesk', sans-serif; }
.price-save {
  background: rgba(34,211,238,0.15);
  color: #22d3ee;
  border: 1px solid rgba(34,211,238,0.3);
  font-family: 'IBM Plex Mono', monospace;
}

.gallery-main {
  background: #0a1020;
  border: 1px solid rgba(34,211,238,0.15);
}
.gallery-badge {
  background: #e207c6;
  font-family: 'IBM Plex Mono', monospace;
  box-shadow: 0 0 16px rgba(226,7,198,0.5);
}
.thumb { background: #0a1020; border-color: rgba(34,211,238,0.15); }
.thumb.active, .thumb:hover {
  border-color: #22d3ee;
  box-shadow: 0 0 12px rgba(34,211,238,0.3);
}

.price-history-section {
  background: linear-gradient(180deg, #1a2235 0%, #151c2e 100%);
  border: 1px solid rgba(34,211,238,0.15);
  box-shadow: 0 0 32px rgba(34,211,238,0.05);
}
.chart-bar {
  background: linear-gradient(180deg, rgba(34,211,238,0.2) 0%, #22d3ee 100%);
}
.chart-bar-current {
  background: linear-gradient(180deg, rgba(34,211,238,0.4) 0%, #22d3ee 100%);
  box-shadow: 0 0 16px rgba(34,211,238,0.5);
}
.chart-month, .chart-price-label { font-family: 'IBM Plex Mono', monospace; }
.chart-note {
  background: rgba(34,211,238,0.08);
  color: #22d3ee;
  font-family: 'IBM Plex Mono', monospace;
  border: 1px solid rgba(34,211,238,0.2);
}

.user-reviews-section {
  background: linear-gradient(180deg, #1a2235 0%, #151c2e 100%);
  border: 1px solid rgba(227,186,63,0.15);
}
.reviews-big-number { color: #e2e8f0; font-family: 'Space Grotesk', sans-serif; }
.reviews-count-text { font-family: 'IBM Plex Mono', monospace; }
.review-bar-track { background: #0a1020; }
.review-bar-fill { background: #e3ba3f; }
.review-card {
  background: #0f1729;
  border: 1px solid rgba(227,186,63,0.12);
}
.review-avatar {
  background: linear-gradient(135deg, #22d3ee, #067fe1);
  color: #0f172a;
}
.review-meta strong { color: #e2e8f0; }
.verified-badge {
  background: rgba(34,211,238,0.1);
  color: #22d3ee;
  font-family: 'IBM Plex Mono', monospace;
}

.pros-cons-widget {
  background: linear-gradient(135deg, #1a2235 0%, #151c2e 100%);
  border: 1px solid rgba(34,211,238,0.15);
}
.pros-cons-widget h3 { color: #e2e8f0; }
.pros-heading { color: #22d3ee; font-family: 'IBM Plex Mono', monospace; text-transform: uppercase; letter-spacing: 0.1em; }
.cons-heading { color: #e207c6; font-family: 'IBM Plex Mono', monospace; text-transform: uppercase; letter-spacing: 0.1em; }
.check-icon { color: #22d3ee; }
.cross-icon { color: #e207c6; }

.delivery-widget {
  background: linear-gradient(135deg, #1a2235 0%, #151c2e 100%);
  border: 1px solid rgba(34,211,238,0.15);
}
.delivery-item svg { color: #22d3ee; }
.delivery-item strong { color: #e2e8f0; }

.social-proof-popup {
  background: linear-gradient(135deg, #1a2235 0%, #151c2e 100%);
  border: 1px solid rgba(34,211,238,0.3);
  box-shadow: 0 0 0 1px rgba(34,211,238,0.15), 0 12px 32px rgba(0,0,0,0.6), 0 0 32px rgba(34,211,238,0.15);
}
.popup-icon {
  background: linear-gradient(135deg, #22d3ee, #067fe1);
  color: #0f172a;
}
.popup-text strong { color: #e2e8f0; }
.popup-time { font-family: 'IBM Plex Mono', monospace; }

.brand-showcase-section { background: #0a1020; }
.brand-card {
  background: #1a2235;
  border: 1px solid rgba(34,211,238,0.12);
}
.brand-card:hover {
  border-color: rgba(34,211,238,0.4);
  box-shadow: 0 0 20px rgba(34,211,238,0.12);
}
.brand-initial {
  background: linear-gradient(135deg, #22d3ee 0%, #067fe1 100%);
  color: #0f172a;
  box-shadow: 0 0 16px rgba(34,211,238,0.3);
}
.brand-tagline { font-family: 'IBM Plex Mono', monospace; }

.trending-section { background: #0f172a; }
.trending-item {
  background: #1a2235;
  border: 1px solid rgba(34,211,238,0.1);
}
.trending-item:hover {
  border-color: rgba(34,211,238,0.35);
  box-shadow: 0 0 16px rgba(34,211,238,0.1);
}
.trending-rank { color: #22d3ee; font-family: 'Space Grotesk', sans-serif; }
.trending-hot {
  background: rgba(226,7,198,0.15);
  color: #e207c6;
  border: 1px solid rgba(226,7,198,0.3);
  font-family: 'IBM Plex Mono', monospace;
}

.cookie-banner {
  background: linear-gradient(135deg, #1a2235 0%, #151c2e 100%);
  border-top: 1px solid rgba(34,211,238,0.3);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5), 0 -1px 0 rgba(34,211,238,0.2);
}
.cookie-banner button {
  background: linear-gradient(135deg, #067fe1 0%, #22d3ee 100%);
  color: #0f172a;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer {
  border-top: 1px solid rgba(34,211,238,0.15);
}
.footer-col h4 {
  color: #22d3ee;
  font-family: 'IBM Plex Mono', monospace;
}
.social-links a:hover {
  background: rgba(34,211,238,0.2);
  border-color: #22d3ee;
  color: #22d3ee;
  box-shadow: 0 0 16px rgba(34,211,238,0.3);
}

.search-input {
  background: #1a2235;
  border-color: rgba(34,211,238,0.2);
  color: #e2e8f0;
}
.search-input:focus {
  border-color: #22d3ee;
  box-shadow: 0 0 0 3px rgba(34,211,238,0.15);
}

.mobile-nav-link {
  color: #e2e8f0;
  border-bottom-color: rgba(34,211,238,0.1);
  font-family: 'Space Grotesk', sans-serif;
}

@media (max-width: 768px) {
  .hero::before { background-size: 32px 32px; }
  body { background-size: 32px 32px; }
}