/* Design System Variables */
:root {
  /* Gaming-inspired light backgrounds */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(215, 28%, 12%);

  /* Card system with gaming aesthetics on light */
  --card: hsl(0, 0%, 98%);
  --card-foreground: hsl(215, 28%, 12%);

  /* Gaming neon colors - electric blue to cyan */
  --primary: hsl(195, 100%, 45%);
  --primary-glow: hsl(180, 100%, 55%);
  --primary-foreground: hsl(0, 0%, 100%);

  /* Gaming accent - neon purple */
  --accent: hsl(270, 100%, 60%);
  --accent-glow: hsl(285, 100%, 65%);
  --accent-foreground: hsl(0, 0%, 100%);

  /* Light secondary gaming tones */
  --secondary: hsl(215, 20%, 95%);
  --secondary-foreground: hsl(215, 28%, 15%);

  /* Light muted gaming elements */
  --muted: hsl(215, 15%, 92%);
  --muted-foreground: hsl(215, 20%, 35%);

  /* Error states with gaming red */
  --destructive: hsl(0, 100%, 50%);
  --destructive-foreground: hsl(0, 0%, 100%);

  /* Light gaming borders and inputs */
  --border: hsl(215, 20%, 85%);
  --input: hsl(215, 15%, 90%);
  --ring: hsl(195, 100%, 45%);

  /* Gaming radius */
  --radius: 0.75rem;
  
  /* Gaming gradients for light theme */
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-glow));
  --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-glow));
  --gradient-gaming: linear-gradient(135deg, hsl(195, 100%, 45%), hsl(270, 100%, 60%), hsl(180, 100%, 55%));
  --gradient-hero: linear-gradient(135deg, var(--background), hsl(215, 15%, 96%));
  --gradient-card: linear-gradient(145deg, hsla(0, 0%, 100%, 0.9), hsla(215, 15%, 98%, 0.8));
  
  /* Gaming glow effects for light background */
  --glow-primary: 0 0 25px hsla(195, 100%, 45%, 0.4);
  --glow-accent: 0 0 25px hsla(270, 100%, 60%, 0.4);
  --glow-strong: 0 0 40px hsla(195, 100%, 45%, 0.6);
  --shadow-gaming: 0 10px 30px hsla(195, 100%, 45%, 0.25);
  --shadow-neon: 0 0 60px hsla(195, 100%, 45%, 0.3);

  /* Gaming animations */
  --transition-gaming: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.2;
}

.gradient-text {
  background: var(--gradient-gaming);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse 2s infinite;
}

.gradient-primary-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-accent-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-gaming-text {
  background: var(--gradient-gaming);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-primary {
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

/* Buttons */
.btn2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-gaming);
  background: transparent;
}

.btn-hero {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: var(--glow-primary);
  border: 1px solid hsla(195, 100%, 45%, 0.2);
}

.btn-hero:hover {
  box-shadow: var(--glow-strong);
  transform: scale(1.05);
}

.btn-outline {
  background: var(--card);
  border: 1px solid hsla(195, 100%, 45%, 0.2);
  color: var(--primary);
}

.btn-outline:hover {
  background: hsla(195, 100%, 45%, 0.05);
  box-shadow: var(--glow-primary);
}

.btn-full {
  width: 100%;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--card);
  border: 1px solid hsla(195, 100%, 45%, 0.2);
  border-radius: 2rem;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--glow-primary);
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid hsla(195, 100%, 45%, 0.15);
  border-radius: var(--radius);
  transition: var(--transition-gaming);
}

.card:hover {
  border-color: hsla(195, 100%, 45%, 0.25);
  box-shadow: var(--glow-primary);
  transform: translateY(-0.5rem);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 6rem 0 8rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, hsla(0, 0%, 100%, 0.95), hsla(0, 0%, 100%, 0.9), hsla(195, 100%, 45%, 0.1));
}

.animated-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse 4s infinite;
}

.orb-1 {
  top: 5rem;
  left: 5rem;
  width: 10rem;
  height: 10rem;
  background: hsla(195, 100%, 45%, 0.1);
}

.orb-2 {
  bottom: 5rem;
  right: 5rem;
  width: 8rem;
  height: 8rem;
  background: hsla(270, 100%, 60%, 0.1);
  animation-delay: 1s;
}

.orb-3 {
  top: 50%;
  left: 2.5rem;
  width: 6rem;
  height: 6rem;
  background: hsla(180, 100%, 55%, 0.2);
  animation-delay: 0.5s;
}

.orb-4 {
  top: 33%;
  right: 25%;
  width: 4rem;
  height: 4rem;
  background: hsla(285, 100%, 65%, 0.15);
  animation-delay: 0.7s;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-inner {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 5rem;
}

.hero-title {
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: bold;
  margin: 2rem 0;
  line-height: 1;
}

.hero-description {
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: hsla(215, 28%, 12%, 0.8);
  max-width: 64rem;
  margin: 0 auto 3rem;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 5rem;
  max-width: 300px;
  place-self: anchor-center;

}

@media (min-width: 768px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-cta .btn2 {
  font-size: 1.125rem;
  padding: 1rem 3rem;
  height: auto;
  font-weight: 600;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  cursor: pointer;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  transition: var(--transition-bounce);
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--card);
  transition: var(--transition-gaming);
}

.feature-card.primary {
  border: 1px solid hsla(195, 100%, 45%, 0.15);
}

.feature-card.accent {
  border: 1px solid hsla(270, 100%, 60%, 0.15);
}

.feature-card:hover {
  transform: translateY(-0.5rem);
}

.feature-card.primary:hover {
  border-color: hsla(195, 100%, 45%, 0.3);
  box-shadow: var(--glow-primary);
}

.feature-card.accent:hover {
  border-color: hsla(270, 100%, 60%, 0.3);
  box-shadow: var(--glow-accent);
}

.feature-icon {
  width: 5rem;
  height: 5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition-bounce);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.gradient-primary {
  background: var(--gradient-primary);
  box-shadow: var(--glow-primary);
  color: var(--primary-foreground);
}

.gradient-accent {
  background: var(--gradient-accent);
  box-shadow: var(--glow-accent);
  color: var(--accent-foreground);
}

.feature-icon i {
  font-size: 2.5rem;
}

.pulse-bar {
  width: 0.75rem;
  height: 2.5rem;
  background: var(--primary-foreground);
  border-radius: 0.25rem;
  animation: pulse 2s infinite;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* Service Section */
.service-section {
  position: relative;
  padding: 6rem 0;
  background: hsla(215, 15%, 92%, 0.3);
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb-service-1 {
  position: absolute;
  top: 10rem;
  left: 5rem;
  width: 24rem;
  height: 24rem;
  background: hsla(195, 100%, 45%, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse 4s infinite;
}

.orb-service-2 {
  position: absolute;
  bottom: 10rem;
  right: 5rem;
  width: 20rem;
  height: 20rem;
  background: hsla(270, 100%, 60%, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse 4s infinite;
  animation-delay: 1s;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 10;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: bold;
  margin: 1.5rem 0;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

.service-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-card {
  padding: 2.5rem;
  background: var(--card);
  border-radius: var(--radius);
  transition: var(--transition-gaming);
}

.description-card {
  border: 1px solid hsla(195, 100%, 45%, 0.15);
}

.description-card:hover {
  border-color: hsla(195, 100%, 45%, 0.25);
  box-shadow: var(--glow-primary);
}

.pricing-card {
  border: 1px solid hsla(270, 100%, 60%, 0.15);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  border-color: hsla(270, 100%, 60%, 0.25);
  box-shadow: var(--glow-accent);
}

.pricing-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsla(270, 100%, 60%, 0.03), hsla(195, 100%, 45%, 0.03));
  opacity: 0.5;
}

.card-header {
  margin-bottom: 1.5rem;
}

.card-header h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.gradient-line {
  height: 0.25rem;
  border-radius: 0.125rem;
  margin-bottom: 1.5rem;
}

.gradient-line.primary {
  background: var(--gradient-primary);
}

.gradient-line.accent {
  background: var(--gradient-accent);
}

.card-content {
  position: relative;
  z-index: 10;
}

.card-content p {
  margin-bottom: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.card-content .highlight {
  font-size: 1.125rem;
  color: var(--foreground);
}

.pricing-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  background: var(--gradient-accent);
  border-radius: 50%;
  box-shadow: var(--glow-accent);
  margin: 0 auto 1.5rem;
}

.pricing-content {
  text-align: center;
}

.currency {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--accent-foreground);
}

.price {
    font-size: 1rem;
    font-weight: normal;
    color: hsl(0deg 0% 44.07%);
        padding-inline: 35px;
}

.pricing-title {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 2rem;
}

.benefits-list {
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.benefit-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.game-categories {
  text-align: center;
  margin-bottom: 3rem;
}

.game-categories h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.category-item {
  padding: 1.5rem;
  text-align: center;
  background: var(--card);
  border: 1px solid hsla(195, 100%, 45%, 0.1);
  border-radius: var(--radius);
  transition: var(--transition-gaming);
}

.category-item:hover {
  border-color: hsla(195, 100%, 45%, 0.2);
  box-shadow: var(--glow-primary);
  transform: translateY(-0.25rem);
}

.category-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  transition: var(--transition-bounce);
}

.category-item:hover .category-icon {
  transform: scale(1.1);
}

.category-icon i {
  font-size: 1.5rem;
}

.category-item h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  transition: color 0.3s;
}

.category-item:hover h4 {
  color: var(--primary);
}

.service-cta {
  text-align: center;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  color: var(--background);
  font-weight: bold;
  box-shadow: var(--glow-primary);
  cursor: pointer;
  transition: var(--transition-bounce);
}

.cta-badge:hover {
  transform: scale(1.05);
}

.gradient-gaming {
  background: var(--gradient-gaming);
}

/* Terms Section */
.terms-section {
  padding: 4rem 0;
  background: hsla(215, 15%, 92%, 0.2);
  border-top: 1px solid hsla(215, 20%, 85%, 0.5);
}

.terms-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .terms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.terms-card {
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  transition: var(--transition-gaming);
}

.subscription-card {
  border: 1px solid hsla(195, 100%, 45%, 0.15);
}

.subscription-card:hover {
  border-color: hsla(195, 100%, 45%, 0.25);
  box-shadow: var(--glow-primary);
}

.contact-card {
  border: 1px solid hsla(270, 100%, 60%, 0.15);
}

.contact-card:hover {
  border-color: hsla(270, 100%, 60%, 0.25);
  box-shadow: var(--glow-accent);
}

.notice-card {
  border: 1px solid hsla(0, 100%, 50%, 0.15);
}

.notice-card:hover {
  border-color: hsla(0, 100%, 50%, 0.25);
  box-shadow: 0 0 25px hsla(0, 100%, 50%, 0.2);
}

.terms-card .card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.header-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice-icon {
  background: hsla(0, 100%, 50%, 0.1);
  border: 1px solid hsla(0, 100%, 50%, 0.2);
  color: var(--destructive);
}

.terms-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.contact-item.address {
  align-items: flex-start;
}

.contact-item i {
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item a {
  color: var(--muted-foreground);
  text-decoration: none;
  word-break: break-all;
}

.contact-item a:hover {
  color: var(--accent);
}

.pricing-box {
  padding: 1rem;
  background: hsla(195, 100%, 45%, 0.05);
  border-radius: 0.5rem;
  border: 1px solid hsla(195, 100%, 45%, 0.1);
  margin: 1rem 0;
}

.price-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.price-detail {
  font-size: 0.75rem;
  margin: 0;
}

.disclaimer {
  font-size: 0.75rem;
  margin: 0;
}

.notice-box {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.notice-box.refund {
  background: hsla(0, 100%, 50%, 0.05);
  border: 1px solid hsla(0, 100%, 50%, 0.1);
}

.notice-box.trademarks {
  background: var(--muted);
}

.notice-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notice-box.refund .notice-title {
  color: var(--destructive);
}

.notice-box p:last-child {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0;
}

.terms-footer {
  text-align: center;
}

.terms-acknowledgment {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--card);
  border: 1px solid hsla(195, 100%, 45%, 0.2);
  border-radius: 2rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.terms-acknowledgment i {
  color: var(--primary);
}

/* Footer */
.footer {
  background: hsla(215, 15%, 92%, 0.3);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer-newsletter {
  max-width: 40rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.footer-newsletter h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.footer-newsletter p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  font-size: 1rem;
}

.newsletter-btn {
  padding: 0.75rem 1.5rem;
  margin: auto;
}

.newsletter-disclaimer {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0;
}

.footer-divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: 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-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-links span {
  cursor: pointer;
  transition: color 0.3s;
}

.footer-links span:hover {
  color: var(--foreground);
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 4rem 0 6rem;
  }
  
  .service-section {
    padding: 4rem 0;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .service-grid {
    margin-bottom: 3rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}