:root {
  /* Color scheme */
  --primary-color: #6D28D9; /* Purple */
  --primary-light: #8B5CF6;
  --primary-dark: #4C1D95;
  
  --secondary-color: #2563EB; /* Blue */
  --secondary-light: #3B82F6;
  --secondary-dark: #1E40AF;
  
  --accent-color: #9333EA; /* Neon purple */
  --accent-light: #A855F7;
  --accent-dark: #7E22CE;
  
  --background-dark: #0F172A;
  --background-light: #1E293B;
  
  --text-light: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dark: #1E293B;
  
  --success-color: #10B981;
  --warning-color: #F59E0B;
  --error-color: #EF4444;
  
  /* Typography */
  --heading-font: 'Orbitron', sans-serif;
  --body-font: 'Poppins', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --glow-primary: 0 0 10px var(--primary-light);
  --glow-accent: 0 0 15px var(--accent-light);
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--body-font);
  background-color: var(--background-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(109, 40, 217, 0.15) 0%, transparent 80%),
    linear-gradient(to bottom, var(--background-dark), var(--background-light));
  background-attachment: fixed;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-md) 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-lg);
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--spacing-md);
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  font-family: var(--heading-font);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--text-light);
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 10px rgba(109, 40, 217, 0.5);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: var(--glow-primary);
}

.btn-play {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  color: var(--text-light);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-play:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
  transform: translateY(-2px);
  box-shadow: var(--glow-accent);
}

.btn-submit {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  color: var(--text-light);
  width: 100%;
  font-size: 1rem;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) 0;
}

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

.logo a {
  display: flex;
  align-items: center;
  color: var(--text-light);
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.5rem;
}

.logo img {
  height: 40px;
  margin-right: var(--spacing-sm);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: var(--spacing-lg);
}

.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
  margin-bottom: 5px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: url('https://i.pinimg.com/1200x/65/29/94/652994a8082b443de7ebfb73c17c79bd.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.9));
}

.hero-content {
  text-align: center;
  position: relative;
  /* z-index: 1; */
  max-width: 800px;
  padding: var(--spacing-lg);
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  color: var(--text-muted);
}

/* About Section */
.about {
  padding: var(--spacing-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
}

/* Games Section */
.games {
  padding: var(--spacing-xl) 0;
  background-color: rgba(30, 41, 59, 0.5);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.game-card {
  background: linear-gradient(145deg, var(--background-light), var(--background-dark));
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(147, 51, 234, 0.5);
}

.game-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

.game-info {
  padding: var(--spacing-md);
  text-align: center;
}

.game-info h3 {
  margin-bottom: var(--spacing-md);
}

/* Why Choose Section */
.why-choose {
  padding: var(--spacing-xl) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.8));
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(147, 51, 234, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 0 15px rgba(147, 51, 234, 0.2);
  border-color: rgba(147, 51, 234, 0.3);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
}

/* Contact Section */
.contact {
  padding: var(--spacing-xl) 0;
  background-color: rgba(30, 41, 59, 0.5);
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  background: linear-gradient(145deg, var(--background-light), var(--background-dark));
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(147, 51, 234, 0.3);
  background-color: rgba(15, 23, 42, 0.8);
  color: var(--text-light);
  font-family: var(--body-font);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(147, 51, 234, 0.2);
}

/* Disclaimer Section */
.disclaimer {
  padding: var(--spacing-lg) 0;
  background-color: rgba(15, 23, 42, 0.9);
  text-align: center;
}

.disclaimer p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  padding: var(--spacing-lg) 0;
  background-color: rgba(15, 23, 42, 0.95);
  border-top: 1px solid rgba(147, 51, 234, 0.2);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

.footer-logo img {
  height: 40px;
  margin-right: var(--spacing-sm);
}

.footer-logo span {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-links {
  margin-bottom: var(--spacing-lg);
}

.footer-links a {
  margin: 0 var(--spacing-md);
  font-weight: 500;
}

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