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


:root {
  --bg-primary: #0d1129;
  --bg-secondary: #020525;
  --bg-tertiary: #14183f;
  --bg-card: #060b3e;
  --accent: #3B82F6;
  --accent-hover: #2563EB;
  --accent-light: #60A5FA;
  --accent-glow: rgba(59, 130, 246, 0.15);
  --accent-glow-strong: rgba(59, 130, 246, 0.3);
  --text-primary: #FFFFFF;
  --text-secondary: #D1D5DB;
  --text-muted: #6B7280;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --gradient-hero: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 60%);
  --gradient-section: radial-gradient(ellipse at 50% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
  --nav-height: 72px;
  --nav-bg: rgba(13, 17, 41, 0.85);
  --dropdown-bg: #14183f;
}


body.light-theme {
  --bg-primary: #F8FAFC;
  --bg-secondary: #F1F5F9;
  --bg-tertiary: #E2E8F0;
  --bg-card: #FFFFFF;
  --accent: #3B82F6;
  --accent-hover: #2563EB;
  --accent-light: #2563EB;
  --accent-glow: rgba(59, 130, 246, 0.1);
  --accent-glow-strong: rgba(59, 130, 246, 0.2);
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.15);
  --gradient-hero: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
  --gradient-section: radial-gradient(ellipse at 50% 50%, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.06);
  --nav-bg: rgba(255, 255, 255, 0.9);
  --dropdown-bg: #FFFFFF;
}


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color var(--transition);
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}


.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-primary);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: background-color var(--transition), border-color var(--transition), backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(8, 12, 36, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.nav-logo:hover {
  color: var(--text-primary);
}

.nav-logo img {
  height: 40px;
  width: auto;
}


.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-center a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.nav-center a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-center a:hover {
  color: var(--text-primary);
}

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


.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition);
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-icon-btn:hover {
  background: var(--accent-glow);
  border-color: rgba(59, 130, 246, 0.3);
  color: var(--text-primary);
}

.nav-icon-btn svg {
  flex-shrink: 0;
}

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.85rem !important;
}

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


.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-trigger .arrow {
  font-size: 0.7rem;
  transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-trigger .arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--dropdown-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all var(--transition);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a:not(.game-grid-item):not(.services-dropdown-item) {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:not(.game-grid-item):not(.services-dropdown-item):hover {
  background: var(--accent-glow);
  color: var(--text-primary);
  padding-left: 24px;
}

/* Currency Dropdown */
.currency-dropdown {
  position: relative;
}

.currency-menu {
  min-width: 140px !important;
  right: 0 !important;
  left: auto !important;
  transform: none !important;
}

.currency-dropdown:hover .currency-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) !important;
}

.currency-option {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
  cursor: pointer;
}

.currency-option:hover {
  background: var(--accent-glow);
  color: var(--text-primary);
}

.currency-option.active {
  color: var(--accent);
  font-weight: 700;
}

.services-dropdown {
  min-width: 300px !important;
  padding: 8px 0 !important;
}

.services-dropdown-item {
  display: flex !important;
  align-items: center;
  gap: 14px;
  padding: 14px 20px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition);
}

.services-dropdown-item:last-child {
  border-bottom: none;
}

.services-dropdown-item:hover {
  background: var(--accent-glow) !important;
  padding-left: 20px !important;
}

.services-dropdown-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color var(--transition), border-color var(--transition);
}

.services-dropdown-item:hover .services-dropdown-icon {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.4);
}

.services-dropdown-icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent-light);
}

.services-dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.services-dropdown-text strong {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}

.services-dropdown-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}


.services-dropdown-text span b {
  color: var(--accent-light);
  font-weight: 700;
}

.coming-soon-tag {
  color: rgba(250, 204, 21, 0.7) !important;
  font-size: 0.72rem !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-dropdown-soon {
  cursor: default;
  opacity: 0.55;
}

.services-dropdown-soon:hover {
  opacity: 0.75;
  background: transparent !important;
}


.theme-svg {
  position: absolute;
  transition: all var(--transition);
}

.sun-svg {
  opacity: 1;
  transform: rotate(0deg);
}

.moon-svg {
  opacity: 0;
  transform: rotate(90deg);
}

body.light-theme .sun-svg {
  opacity: 0;
  transform: rotate(-90deg);
}

body.light-theme .moon-svg {
  opacity: 1;
  transform: rotate(0deg);
}

body.light-theme .navbar.scrolled {
  background: var(--nav-bg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

body.light-theme .mobile-nav {
  background: rgba(255, 255, 255, 0.98);
}

body.light-theme .nav-dropdown-menu {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

body.light-theme .hamburger span {
  background: var(--text-primary);
}



.features-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: var(--gradient-section);
  pointer-events: none;
}



.hero-gradient-blend {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(13, 17, 41, 0.5) 40%,
      rgba(13, 17, 41, 0.9) 70%,
      #0d1129 100%);
  pointer-events: none;
  z-index: 1;
}

body.light-theme .hero-gradient-blend {
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(248, 250, 252, 0.5) 40%,
      rgba(248, 250, 252, 0.9) 70%,
      #F8FAFC 100%);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.feature-item {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 32px 24px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-item:hover::before {
  opacity: 0;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

.feature-icon svg {
  width: 36px;
  height: 36px;
  transition: transform 0.35s ease;
}

/* Colorful icons — each feature gets a unique color */
.feature-item:nth-child(1) .feature-icon svg {
  color: #60A5FA;
}

.feature-item:nth-child(2) .feature-icon svg {
  color: #34D399;
}

.feature-item:nth-child(3) .feature-icon svg {
  color: #38BDF8;
}

.feature-item:nth-child(4) .feature-icon svg {
  color: #FBBF24;
}

.feature-item:nth-child(5) .feature-icon svg {
  color: #A78BFA;
}

.feature-item:nth-child(6) .feature-icon svg {
  color: #F472B6;
}

.feature-item:hover .feature-icon {
  transform: scale(1.15);
}

.feature-item:hover .feature-icon svg {
  transform: scale(1.1);
}

.feature-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-item p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}


@media (max-width: 968px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-header h2 {
    font-size: 1.9rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .feature-item {
    padding: 28px 24px;
  }

  .feature-item h3 {
    font-size: 1.2rem;
  }
}



.faq-section {
  background: var(--bg-primary);
}

.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(59, 130, 246, 0.3);
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-tertiary);
}

.faq-number {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-light);
  flex-shrink: 0;
}

.faq-item.active .faq-number {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(59, 130, 246, 0.1));
}

.faq-text {
  flex: 1;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
}

.faq-icon {
  color: var(--text-secondary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px 76px;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}


.faq-sidebar {
  position: sticky;
  top: 100px;
}

.faq-help-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
}

.faq-help-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-help-icon svg {
  color: var(--accent-light);
}

.faq-help-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.faq-help-card>p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.faq-help-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}

.faq-help-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: left;
  transition: all 0.3s ease;
  text-decoration: none;
}

.faq-help-option:hover {
  background: var(--bg-secondary);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.faq-help-option svg {
  color: var(--accent-light);
  flex-shrink: 0;
}

.faq-help-option div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-help-option strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
}

.faq-help-option span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}


@media (max-width: 968px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-sidebar {
    position: static;
  }

  .faq-item.active .faq-answer {
    padding: 0 24px 20px 60px;
  }
}

@media (max-width: 640px) {
  .faq-question {
    padding: 18px 20px;
    gap: 12px;
  }

  .faq-number {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  .faq-text {
    font-size: 0.95rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 16px 52px;
  }

  .faq-help-card {
    padding: 24px 20px;
  }
}

body.light-theme .nav-icon-btn {
  background: rgba(0, 0, 0, 0.05);
}



.nav-right-mobile {
  display: none;
  align-items: center;
  gap: 12px;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

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

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background: rgba(8, 12, 36, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 999;
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
}

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

.mobile-nav-section {
  margin-bottom: 16px;
}

.mobile-nav-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-light);
  padding: 8px 0;
  margin-top: 8px;
}

.mobile-nav a {
  display: block;
  padding: 10px 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.mobile-nav a:hover {
  background: var(--accent-glow);
  color: var(--text-primary);
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(13, 17, 41, 0.92) 0%,
      rgba(13, 17, 41, 0.75) 40%,
      rgba(13, 17, 41, 0.3) 70%,
      rgba(13, 17, 41, 0.1) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.08;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  transition: all var(--transition);
}

.hero-tag svg {
  color: var(--accent-light);
  flex-shrink: 0;
}

.hero-tag:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
}



.features {
  background: var(--gradient-section);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}


.pricing {
  background: var(--bg-primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.15);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.pricing-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-light);
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-label {
  color: var(--accent);
}

.popular-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.pricing-price {
  margin-bottom: 24px;
}

.pricing-price .currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
  vertical-align: top;
}

.pricing-price .amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-price .period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  flex: 1;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-features li .check {
  color: var(--accent-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}


.testimonials {
  background: var(--gradient-section);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform var(--transition), border-color var(--transition);
  will-change: transform;
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: #FBBF24;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent-light);
}

.testimonial-info .name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

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


.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 32px;
}


.reviews-section {
  overflow: hidden;
  padding-bottom: 40px;
}

.reviews-track-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviewScroll 40s linear infinite;
  will-change: transform;
}

/* Reviews keep scrolling on hover */

@keyframes reviewScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.review-card {
  flex-shrink: 0;
  width: 340px;
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.6), rgba(15, 15, 40, 0.8));
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  will-change: transform;
}

.review-card:hover {
  border-color: rgba(99, 102, 241, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
}

.review-stars {
  color: #facc15;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-quote-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.5rem;
  color: rgba(99, 102, 241, 0.2);
  line-height: 1;
  font-family: Georgia, serif;
}

.review-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  min-height: 100px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.review-author-info {
  flex: 1;
  min-width: 0;
}

.review-author-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-primary);
}

.review-author-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-yt-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}


.footer {
  background: #080c24;
  border-top: 2px solid rgba(59, 130, 246, 0.15);
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 260px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--accent-glow);
  border-color: rgba(59, 130, 246, 0.3);
  color: var(--accent-light);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: all var(--transition);
}

.footer-col a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.45;
  transition: opacity var(--transition);
}

.footer-col a:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

.footer-col a:hover svg {
  opacity: 0.85;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
}

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


.legal-page {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
  min-height: 100vh;
}

.legal-page .container {
  max-width: 860px;
}

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.legal-header .last-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.legal-content p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content ul li {
  list-style: disc;
  padding: 4px 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.legal-content a {
  color: var(--accent-light);
}


.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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


@media (max-width: 1024px) {

  .features-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-stats {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-center {
    display: none;
  }

  .nav-right {
    display: none;
  }

  .nav-right-mobile {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

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

  .features-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }
}



.legal-page {
  min-height: calc(100vh - var(--nav-height));
  padding: 100px 0 80px;
  background: var(--bg-primary);
}

.legal-header {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.legal-header::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
}

.legal-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.last-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.legal-content {
  max-width: 850px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 50px 60px;
  box-shadow: var(--shadow-card);
}

.legal-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 50px;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 4px solid var(--accent);
  position: relative;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.legal-content li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 12px;
  padding-left: 10px;
}

.legal-content ul li {
  position: relative;
}

.legal-content ul li::marker {
  color: var(--accent);
}

.legal-content strong {
  color: var(--text-primary);
  font-weight: 600;
}


.legal-highlight {
  background: var(--bg-tertiary);
  border: 1px solid var(--accent);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 30px 0;
}

.legal-highlight p {
  margin: 0;
  color: var(--text-primary);
}

.legal-highlight strong {
  color: var(--accent-light);
}


@media (max-width: 768px) {
  .legal-header h1 {
    font-size: 2.2rem;
  }

  .legal-content {
    padding: 35px 28px;
  }

  .legal-content h2 {
    font-size: 1.4rem;
  }

  .legal-page {
    padding: 80px 0 60px;
  }
}

@media (max-width: 480px) {
  .legal-header h1 {
    font-size: 1.8rem;
  }

  .legal-content {
    padding: 28px 20px;
  }

  .legal-content h2 {
    font-size: 1.25rem;
    padding-left: 16px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .container {
    padding: 0 16px;
  }

  .pricing-card {
    padding: 28px 24px;
  }

  .feature-card {
    padding: 28px 24px;
  }
}



.games-section {
  background: var(--bg-primary);
  position: relative;
}

.games-search-wrapper {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.games-search-bar {
  width: 100%;
  max-width: 500px;
  height: 52px;
  border-radius: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.games-search-bar:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.games-search-bar svg {
  color: var(--text-muted);
  flex-shrink: 0;
}

.games-search-bar input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
}

.games-search-bar input::placeholder {
  color: var(--text-muted);
}

.games-search-bar input:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.game-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  display: block;
  text-decoration: none !important;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.game-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
  z-index: 2;
}

.game-card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--bg-card);
  overflow: hidden;
}

.game-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 17, 41, 0.9) 0%, rgba(13, 17, 41, 0.2) 60%, transparent 100%);
  transition: background 0.4s ease;
}

.game-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;

  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-align: center;
}

.game-card-content h3 {
  font-size: 1.8rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  margin: 0;
}


.game-card:hover .game-card-bg img {
  transform: scale(1.1);
  filter: blur(6px);

}

.game-card:hover .game-card-overlay {
  background: rgba(3, 7, 18, 0.7);

}

.game-card:hover .game-card-content {
  opacity: 1;

  transform: translateY(0);
}


.view-more-card {
  border-style: dashed;
  border-color: var(--border-hover);
}

.view-more-bgs {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  filter: grayscale(100%) blur(2px);
  transition: all 0.5s ease;
}

.view-more-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  mix-blend-mode: overlay;
}

.view-more-bg-img:nth-child(1) {
  clip-path: polygon(0 0, 100% 0, 30% 100%, 0% 100%);
}

.view-more-bg-img:nth-child(2) {
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 30% 100%);
}

.view-more-bg-img:nth-child(3) {
  clip-path: polygon(70% 0, 100% 0, 100% 100%, 70% 100%);
}

.view-more-content {
  opacity: 1;

  transform: none;
}

.view-more-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-tertiary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  color: var(--accent);
  transition: all 0.3s ease;
}

.view-more-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.view-more-content span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.view-more-card:hover .view-more-bgs {
  opacity: 0.5;
  filter: grayscale(0%) blur(0px);
}

.view-more-card:hover .view-more-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}


@media (max-width: 968px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .games-grid {
    grid-template-columns: 1fr;
  }

  .game-card {
    height: 180px;
  }


}




.gh-hero {
  position: relative;
  padding: 140px 0 80px;
  text-align: center;
  overflow: hidden;
}

.gh-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.gh-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gh-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(13, 17, 41, 0.3) 0%, rgba(13, 17, 41, 0.55) 50%, rgba(13, 17, 41, 0.95) 85%, #0d1129 100%);
}

.gh-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.gh-title {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-transform: uppercase;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gh-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
}


.gh-trustpilot {
  margin-bottom: 40px;
}

.trustpilot-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-color);
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.trustpilot-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.tp-stars {
  display: flex;
  gap: 2px;
}

.tp-logo {
  display: flex;
  align-items: center;
}


.gh-search-container {
  display: flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px;
  width: 100%;
  max-width: 700px;
  backdrop-filter: blur(10px);
}

.gh-search-bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.gh-search-bar input {
  background: transparent;
  border: none;
  color: var(--text-color);
  font-size: 1rem;
  width: 100%;
  padding: 12px 0;
  outline: none;
}

.gh-search-bar svg {
  color: var(--text-muted);
}

.gh-category-dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
}

.gh-category-dropdown strong {
  color: var(--text-color);
}


.gh-games-section {
  padding-top: 20px;
  padding-bottom: 15rem;

}

.gh-games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.gh-game-card {
  position: relative;
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.gh-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  border-color: var(--accent);
}

.gh-card-img {
  position: relative;
  aspect-ratio: 2/3;

  overflow: hidden;
}

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

.gh-game-card:hover .gh-card-img img {
  transform: scale(1.05);
}

.gh-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 17, 41, 0.9) 0%, transparent 60%);
}

.gh-card-info {
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.gh-card-info h3,
.gh-card-info h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 8px 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.gh-price strong {
  color: var(--accent);
}

.gh-card-icons {
  display: flex;
  gap: 8px;
  color: var(--text-muted);
  opacity: 0.7;
}

.gh-card-platforms {
  display: flex;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}


@media (max-width: 1200px) {
  .gh-games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .gh-games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .gh-search-container {
    flex-direction: column;
    padding: 12px;
    gap: 12px;
  }

  .gh-search-bar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
    width: 100%;
  }

  .gh-category-dropdown {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 600px) {
  .gh-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .gh-games-grid {
    grid-template-columns: 1fr;
  }
}

.mc-plans-section {
  padding-bottom: 80px;
}

.mc-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mc-plan-card {
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.6), rgba(15, 15, 40, 0.9));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mc-plan-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 40px -10px rgba(139, 92, 246, 0.3);
}

.mc-plan-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #fff;
}

.mc-plan-specs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.spec-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.mc-plan-price {
  margin-top: auto;
  margin-bottom: 24px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-light);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.mc-plan-price .currency {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 600;
}

.mc-plan-price .period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.btn.mc-plan-btn {
  width: 100%;
  padding: 12px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid var(--accent);
  color: #fff;
}

.btn.mc-plan-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}


@media (max-width: 1200px) {
  .mc-plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .mc-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .mc-plans-grid {
    grid-template-columns: 1fr;
  }
}

.mc-plan-img-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  height: 120px;
  align-items: center;
}

.mc-plan-img {
  width: auto;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.mc-plan-card:hover .mc-plan-img {
  transform: scale(1.1) rotate(5deg);
}


.mc-tier-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.mc-tier-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  transition: all var(--transition);
}

.mc-tier-btn:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

.mc-tier-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
}

.mc-tier-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  letter-spacing: 0.3px;
}

.mc-tier-badge.deluxe {
  background: rgba(250, 204, 21, 0.15);
  color: #fbbf24;
}

.mc-tier-btn.active .mc-tier-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.mc-tier-info {
  text-align: center;
  margin-bottom: 28px;
}

.mc-tier-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--accent-glow);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent-light);
  font-weight: 500;
}

.mc-tier-chip.deluxe {
  background: rgba(250, 204, 21, 0.08);
  border-color: rgba(250, 204, 21, 0.25);
  color: #fbbf24;
}


.deluxe-card {
  border-color: rgba(250, 204, 21, 0.15);
}

.deluxe-card:hover {
  border-color: rgba(250, 204, 21, 0.4) !important;
  box-shadow: 0 12px 40px rgba(250, 204, 21, 0.08) !important;
}


/* ===== Panel Showcase Section ===== */

.panel-showcase-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.panel-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: nowrap;
  margin-bottom: 48px;
}

.panel-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  text-align: left;
}

.panel-tab:hover {
  border-color: var(--accent);
  background: var(--bg-tertiary);
  transform: translateY(-2px);
}

.panel-tab.active {
  background: var(--accent-glow);
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.panel-tab-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.panel-tab-icon svg {
  width: 16px;
  height: 16px;
}

.panel-tab.active .panel-tab-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.panel-tab-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.panel-tab-text strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
}

.panel-tab-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.panel-tab.active .panel-tab-text strong {
  color: var(--accent-light);
}

.panel-display {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.panel-display-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.panel-display-frame {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.panel-display-dots {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border);
}

.panel-display-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}

.panel-display-dots span:nth-child(1) {
  background: #ef4444;
}

.panel-display-dots span:nth-child(2) {
  background: #eab308;
}

.panel-display-dots span:nth-child(3) {
  background: #22c55e;
}

.panel-display-content {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-secondary);
}

.panel-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.panel-img.active {
  opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .panel-tabs {
    gap: 8px;
  }

  .panel-tab {
    padding: 10px 14px;
  }

  .panel-tab-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .panel-tab-icon svg {
    width: 18px;
    height: 18px;
  }

  .panel-tab-text strong {
    font-size: 0.85rem;
  }

  .panel-tab-text span {
    font-size: 0.72rem;
  }
}

@media (max-width: 600px) {
  .panel-tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .panel-tab {
    width: 100%;
  }

  .panel-display-content {
    aspect-ratio: 4 / 3;
  }
}