/* NeonPlay - Cyberpunk/Neon Style CSS */
/* Based on zhuti theme - Purple & Cyan color scheme */

:root {
  /* NeonPlay - Cyberpunk/Neon Colors */
  --background: #0d0a1a;
  --foreground: #f0f0f5;
  --card: #1a1530;
  --card-foreground: #f0f0f5;
  --popover: #151025;
  --popover-foreground: #f0f0f5;
  --primary: #d946ef;
  --primary-foreground: #ffffff;
  --secondary: #1f1a35;
  --secondary-foreground: #f0f0f5;
  --muted: #2a2445;
  --muted-foreground: #8a8599;
  --accent: #22d3ee;
  --accent-foreground: #0d0a1a;
  --neon: #4ade80;
  --neon-foreground: #0d0a1a;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #3a3055;
  --input: #1f1a35;
  --ring: #d946ef;
  --radius: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary);
}

img {
  max-width: 100%;
  height: auto;
}

/* Gradient Effects */
.gradient-neon {
  background: linear-gradient(135deg, #d946ef 0%, #c026d3 100%);
}

.gradient-cyan {
  background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
}

.gradient-cyber {
  background: linear-gradient(135deg, #d946ef 0%, #22d3ee 50%, #4ade80 100%);
}

.gradient-dark {
  background: linear-gradient(180deg, #0d0a1a 0%, #050308 100%);
}

/* Glass Morphism */
.glass-dark {
  background: rgba(26, 21, 48, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(217, 70, 239, 0.15);
}

/* Neon Glow Effects */
.glow-pink {
  box-shadow: 0 0 30px rgba(217, 70, 239, 0.5), 0 0 60px rgba(217, 70, 239, 0.2);
}

.glow-cyan {
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.5), 0 0 60px rgba(34, 211, 238, 0.2);
}

.glow-green {
  box-shadow: 0 0 30px rgba(74, 222, 128, 0.5), 0 0 60px rgba(74, 222, 128, 0.2);
}

.text-glow-pink {
  text-shadow: 0 0 20px rgba(217, 70, 239, 0.8), 0 0 40px rgba(217, 70, 239, 0.4);
}

.text-glow-cyan {
  text-shadow: 0 0 20px rgba(34, 211, 238, 0.8), 0 0 40px rgba(34, 211, 238, 0.4);
}

/* Grid Pattern Background */
.grid-pattern {
  background-image:
    linear-gradient(rgba(217, 70, 239, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 70, 239, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

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

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d946ef, #22d3ee);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #e879f9, #67e8f9);
}

/* Animations */
@keyframes neon-pulse {
  0%, 100% {
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    opacity: 0.8;
    filter: brightness(1.2);
  }
}

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

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

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

.animate-neon-pulse {
  animation: neon-pulse 2s ease-in-out infinite;
}

.animate-float-up {
  animation: float-up 4s ease-in-out infinite;
}

.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
  opacity: 0.5;
}

.header.scrolled {
  background: rgba(26, 21, 48, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(217, 70, 239, 0.15);
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 0.5rem;
  border: 1px solid rgba(217, 70, 239, 0.3);
  background: rgba(13, 10, 26, 0.5);
  transition: all 0.3s ease;
}

.logo:hover .logo-icon {
  box-shadow: 0 0 30px rgba(217, 70, 239, 0.5);
  border-color: rgba(217, 70, 239, 0.6);
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.logo-name span {
  color: var(--primary);
  text-shadow: 0 0 20px rgba(217, 70, 239, 0.8);
}

.logo-tagline {
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
}

/* Navigation */
.nav-menu {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-menu { display: flex; }
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(240, 240, 245, 0.7);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(217, 70, 239, 0.05);
}

.nav-link svg {
  width: 16px;
  height: 16px;
}

/* Search Box */
.search-box {
  position: relative;
  width: 256px;
  display: none;
}

@media (min-width: 1024px) {
  .search-box { display: block; }
}

.search-input {
  width: 100%;
  padding: 0.5rem 0.75rem 0.5rem 2.5rem;
  font-size: 0.875rem;
  background: rgba(31, 26, 53, 0.3);
  border: 1px solid rgba(58, 48, 85, 0.5);
  border-radius: 0.5rem;
  color: var(--foreground);
  transition: all 0.2s ease;
}

.search-input::placeholder {
  color: rgba(138, 133, 153, 0.5);
}

.search-input:focus {
  outline: none;
  border-color: rgba(217, 70, 239, 0.5);
  background: rgba(31, 26, 53, 0.5);
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--muted-foreground);
}

.search-kbd {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.125rem 0.375rem;
  font-size: 10px;
  font-family: monospace;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  color: var(--muted-foreground);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #d946ef 0%, #c026d3 100%);
  color: white;
  box-shadow: 0 0 30px rgba(217, 70, 239, 0.5);
}

.btn-primary:hover {
  opacity: 0.9;
  color: white;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(58, 48, 85, 0.5);
  color: rgba(240, 240, 245, 0.8);
}

.btn-outline:hover {
  border-color: rgba(34, 211, 238, 0.5);
  color: var(--accent);
  background: rgba(34, 211, 238, 0.05);
}

.btn-accent {
  background: transparent;
  border: 1px solid rgba(34, 211, 238, 0.5);
  color: var(--accent);
}

.btn-accent:hover {
  background: rgba(34, 211, 238, 0.1);
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(58, 48, 85, 0.5);
  background: rgba(26, 21, 48, 0.7);
  backdrop-filter: blur(20px);
}

.mobile-menu.active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu-content {
  padding: 1rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover {
  background: rgba(217, 70, 239, 0.1);
  color: var(--primary);
}

.mobile-nav-link svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 6rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-blur-1 {
  position: absolute;
  top: 5rem;
  left: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(217, 70, 239, 0.1);
  filter: blur(150px);
}

.hero-blur-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.1);
  filter: blur(120px);
}

.hero-blur-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.05);
  filter: blur(100px);
}

/* Bento Grid */
.bento-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto auto;
  }
}

/* Featured Card */
.featured-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(26, 21, 48, 0.5);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .featured-card {
    grid-column: span 8;
    grid-row: span 2;
  }
}

.featured-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(217, 70, 239, 0.05), transparent, rgba(34, 211, 238, 0.05));
}

.featured-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(217, 70, 239, 0.5), transparent);
}

.featured-content {
  position: relative;
  padding: 2rem;
}

@media (min-width: 1024px) {
  .featured-content { padding: 3rem; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  border: 1px solid rgba(217, 70, 239, 0.3);
  background: rgba(217, 70, 239, 0.1);
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.badge svg {
  width: 16px;
  height: 16px;
}

.featured-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .featured-grid { grid-template-columns: 1fr 1fr; }
}

.featured-category {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.featured-title {
  margin-top: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .featured-title { font-size: 2.5rem; }
}

.featured-provider {
  margin-top: 0.5rem;
  color: var(--muted-foreground);
}

.featured-desc {
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.featured-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-box {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: rgba(31, 26, 53, 0.3);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.stat-value {
  font-size: 1.125rem;
  font-weight: 700;
}

.stat-value.neon { color: var(--neon); }
.stat-value.primary { color: var(--primary); }

.featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* Featured Image */
.featured-image {
  position: relative;
  aspect-ratio: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(58, 48, 85, 0.5);
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-card:hover .featured-image img {
  transform: scale(1.05);
}

.featured-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 10, 26, 0.8), transparent);
}

.featured-image-info {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--neon);
}

.live-dot {
  position: relative;
  width: 8px;
  height: 8px;
}

.live-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--neon);
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.live-dot::after {
  content: '';
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon);
}

/* Stats Cards */
.stats-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .stats-column {
    grid-column: span 4;
    grid-row: span 2;
  }
}

.stat-card {
  flex: 1;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid;
  transition: all 0.2s ease;
}

.stat-card:hover {
  transform: scale(1.02);
}

.stat-card.pink {
  border-color: rgba(217, 70, 239, 0.3);
  background: rgba(217, 70, 239, 0.05);
}

.stat-card.pink:hover {
  box-shadow: 0 0 30px rgba(217, 70, 239, 0.5);
}

.stat-card.cyan {
  border-color: rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.05);
}

.stat-card.cyan:hover {
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.5);
}

.stat-card.green {
  border-color: rgba(74, 222, 128, 0.3);
  background: rgba(74, 222, 128, 0.05);
}

.stat-card.green:hover {
  box-shadow: 0 0 30px rgba(74, 222, 128, 0.5);
}

.stat-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 0.75rem;
}

.stat-card.pink svg { color: var(--primary); }
.stat-card.cyan svg { color: var(--accent); }
.stat-card.green svg { color: var(--neon); }

.stat-card-value {
  font-size: 1.875rem;
  font-weight: 700;
}

.stat-card.pink .stat-card-value {
  color: var(--primary);
  text-shadow: 0 0 20px rgba(217, 70, 239, 0.8);
}

.stat-card.cyan .stat-card-value {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(34, 211, 238, 0.8);
}

.stat-card.green .stat-card-value {
  color: var(--neon);
}

.stat-card-label {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Trending Section */
.trending-section {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(26, 21, 48, 0.3);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .trending-section { grid-column: span 12; }
}

.trending-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.trending-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.trending-title svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.trending-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.trending-meta svg {
  width: 12px;
  height: 12px;
}

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

@media (min-width: 768px) {
  .trending-grid { grid-template-columns: repeat(4, 1fr); }
}

.trending-card {
  position: relative;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: rgba(31, 26, 53, 0.2);
  transition: all 0.2s ease;
}

.trending-card:hover {
  border-color: rgba(217, 70, 239, 0.5);
  background: rgba(31, 26, 53, 0.4);
}

.trending-card-hot {
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 0.125rem 0.5rem;
  font-size: 10px;
  font-weight: 700;
  border-radius: 9999px;
  background: var(--destructive);
  color: white;
}

.trending-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.trending-card-category {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.trending-card-rank {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
}

.trending-card-name {
  font-weight: 600;
  transition: color 0.2s ease;
}

.trending-card:hover .trending-card-name {
  color: var(--primary);
}

.trending-card-online {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--neon);
}

.trending-card-online .live-dot {
  width: 6px;
  height: 6px;
}

.trending-card-online .live-dot::after {
  width: 6px;
  height: 6px;
}

/* Intro Section */
.intro-section {
  max-width: 896px;
  margin: 4rem auto 0;
  text-align: center;
}

.intro-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .intro-title { font-size: 1.875rem; }
}

.intro-title span {
  color: var(--primary);
  text-shadow: 0 0 20px rgba(217, 70, 239, 0.8);
}

.intro-text {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.intro-text p {
  margin-bottom: 1rem;
}

/* Section Base */
.section {
  padding: 4rem 0;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  border: 1px solid rgba(217, 70, 239, 0.3);
  background: rgba(217, 70, 239, 0.1);
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .section-title { font-size: 2.25rem; }
}

.section-subtitle {
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

/* Rankings/Brand Cards */
.brands-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
}

.brand-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(26, 21, 48, 0.5);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.brand-card:hover {
  border-color: rgba(217, 70, 239, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(217, 70, 239, 0.2);
}

.brand-card-rank {
  position: absolute;
  top: -10px;
  left: 1.5rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  background: linear-gradient(135deg, #d946ef 0%, #c026d3 100%);
  color: white;
  box-shadow: 0 0 20px rgba(217, 70, 239, 0.5);
}

.brand-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.brand-logo {
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  object-fit: cover;
  border: 1px solid var(--border);
  background: var(--card);
}

.brand-info {
  flex: 1;
}

.brand-name {
  font-size: 1.125rem;
  font-weight: 700;
}

.brand-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.25rem;
  font-size: 0.875rem;
}

.brand-rating svg {
  width: 14px;
  height: 14px;
  color: #fbbf24;
  fill: #fbbf24;
}

.brand-rating span {
  color: var(--muted-foreground);
}

.brand-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.brand-bonus {
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: rgba(217, 70, 239, 0.1);
  border: 1px solid rgba(217, 70, 239, 0.2);
  margin-bottom: 1rem;
  text-align: center;
}

.brand-bonus-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.brand-bonus-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-shadow: 0 0 10px rgba(217, 70, 239, 0.5);
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.brand-tag {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 0.25rem;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
  color: var(--accent);
}

.brand-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

/* Categories Section */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(6, 1fr); }
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(26, 21, 48, 0.5);
  transition: all 0.3s ease;
}

.category-card:hover {
  border-color: rgba(217, 70, 239, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(217, 70, 239, 0.2);
}

.category-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(217, 70, 239, 0.1);
  margin-bottom: 0.75rem;
}

.category-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.category-name {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.category-count {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Providers Section */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .providers-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .providers-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .providers-grid { grid-template-columns: repeat(6, 1fr); }
}

.provider-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(26, 21, 48, 0.5);
  transition: all 0.3s ease;
}

.provider-card:hover {
  border-color: rgba(34, 211, 238, 0.5);
  background: rgba(34, 211, 238, 0.05);
}

.provider-logo {
  width: 80px;
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.provider-card:hover .provider-logo {
  filter: grayscale(0%);
  opacity: 1;
}

.provider-name {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

/* Features Section */
.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(26, 21, 48, 0.5);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(217, 70, 239, 0.5);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(217, 70, 239, 0.2), rgba(34, 211, 238, 0.2));
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* FAQ Section */
.faq-list {
  max-width: 768px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
  background: rgba(26, 21, 48, 0.5);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217, 70, 239, 0.2), rgba(34, 211, 238, 0.2));
  border: 1px solid rgba(217, 70, 239, 0.3);
  border-radius: 1.5rem;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .cta-title { font-size: 2.25rem; }
}

.cta-desc {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Footer */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  background: rgba(13, 10, 26, 0.8);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand {
  max-width: 320px;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-disclaimer {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  margin-bottom: 2rem;
}

.footer-disclaimer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.25rem;
  background: var(--destructive);
  color: white;
  margin-bottom: 0.75rem;
}

.footer-disclaimer p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-legal a:hover {
  color: var(--primary);
}

/* Review Page Styles */
.review-hero {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 2rem;
  overflow: hidden;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--muted-foreground);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb-separator {
  color: var(--muted-foreground);
}

.breadcrumb-current {
  color: var(--primary);
}

.review-header-card {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(26, 21, 48, 0.5);
  backdrop-filter: blur(8px);
}

.review-header-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .review-header-content {
    flex-direction: row;
    align-items: center;
  }
}

.review-logo {
  width: 120px;
  height: 120px;
  border-radius: 1rem;
  object-fit: cover;
  border: 2px solid var(--border);
}

.review-header-info {
  flex: 1;
}

.review-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #d946ef 0%, #c026d3 100%);
  color: white;
  box-shadow: 0 0 30px rgba(217, 70, 239, 0.5);
  margin-bottom: 1rem;
}

.review-rating-badge svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.review-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .review-title { font-size: 2.5rem; }
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.review-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-meta-item svg {
  width: 16px;
  height: 16px;
}

/* Quick Stats */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .quick-stats { grid-template-columns: repeat(4, 1fr); }
}

.quick-stat {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(31, 26, 53, 0.3);
  text-align: center;
}

.quick-stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.quick-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neon);
}

/* Table of Contents */
.toc {
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(26, 21, 48, 0.5);
  margin: 2rem 0;
}

.toc-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.toc-list {
  display: grid;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .toc-list { grid-template-columns: repeat(2, 1fr); }
}

.toc-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.toc-link:hover {
  background: rgba(217, 70, 239, 0.1);
  color: var(--primary);
}

.toc-link span {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.25rem;
  background: rgba(217, 70, 239, 0.2);
  color: var(--primary);
}

/* Review Sections */
.review-section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.review-section:last-child {
  border-bottom: none;
}

.review-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-section-title svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.review-section-content {
  color: var(--muted-foreground);
  line-height: 1.8;
}

.review-section-content p {
  margin-bottom: 1rem;
}

/* Pros & Cons */
.pros-cons-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pros-cons-grid { grid-template-columns: repeat(2, 1fr); }
}

.pros-list, .cons-list {
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.pros-list {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.cons-list {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.pros-title, .cons-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pros-title {
  color: var(--neon);
}

.cons-title {
  color: var(--destructive);
}

.pros-list ul, .cons-list ul {
  list-style: none;
}

.pros-list li, .cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground);
}

.pros-list li::before {
  content: '✓';
  color: var(--neon);
  font-weight: 700;
}

.cons-list li::before {
  content: '✗';
  color: var(--destructive);
  font-weight: 700;
}

/* Payment Methods Table */
.payment-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.payment-table th,
.payment-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.payment-table th {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted-foreground);
  background: rgba(31, 26, 53, 0.5);
}

.payment-table td {
  font-size: 0.875rem;
}

/* Related Brands */
.related-section {
  padding: 3rem 0;
}

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

@media (min-width: 768px) {
  .related-grid { grid-template-columns: repeat(4, 1fr); }
}

.related-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(26, 21, 48, 0.5);
  text-align: center;
  transition: all 0.3s ease;
}

.related-card:hover {
  border-color: rgba(217, 70, 239, 0.5);
  transform: translateY(-4px);
}

.related-card img {
  width: 60px;
  height: 60px;
  border-radius: 0.5rem;
  object-fit: cover;
  margin-bottom: 0.75rem;
}

.related-card h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.related-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.related-rating svg {
  width: 14px;
  height: 14px;
  color: #fbbf24;
  fill: #fbbf24;
}

/* Review Image */
.review-image {
  margin: 1.5rem 0;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
}

.review-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Conclusion Card */
.conclusion-card {
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(217, 70, 239, 0.1), rgba(34, 211, 238, 0.1));
  border: 1px solid rgba(217, 70, 239, 0.3);
  text-align: center;
}

.conclusion-rating {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  text-shadow: 0 0 30px rgba(217, 70, 239, 0.8);
  margin-bottom: 1rem;
}

.conclusion-text {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Static Pages */
.static-page {
  position: relative;
  padding-top: 6rem;
  min-height: 100vh;
  overflow: hidden;
}

.static-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.static-content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary);
}

.static-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
}

.static-content p {
  margin-bottom: 1rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.static-content ul, .static-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: var(--muted-foreground);
}

.static-content li {
  margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background: rgba(31, 26, 53, 0.5);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--foreground);
  transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217, 70, 239, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* 404 Page */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.error-code {
  font-size: 8rem;
  font-weight: 700;
  color: var(--primary);
  text-shadow: 0 0 60px rgba(217, 70, 239, 0.8);
  line-height: 1;
}

.error-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1rem 0;
}

.error-desc {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

/* Utilities */
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-neon { color: var(--neon); }
.text-muted { color: var(--muted-foreground); }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.relative { position: relative; }
.absolute { position: absolute; }

.overflow-hidden { overflow: hidden; }
