@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  /* Primary Colors */
  --primary-dark: #1a0033;
  --primary: #4b0082;
  --primary-light: #7b2cbf;
  
  /* Ice Theme Colors */
  --ice-dark: #142850;
  --ice: #27496d;
  --ice-light: #0c7b93;
  --ice-accent: #00a8cc;
  
  /* Forest/Tree Theme Colors */
  --forest-dark: #1b4332;
  --forest: #2d6a4f;
  --forest-light: #40916c;
  
  /* Accent Colors */
  --neon-purple: #bc13fe;
  --neon-blue: #4cc9f0;
  --neon-green: #39ff14;
  
  /* Neutral Colors */
  --dark: #0f0f1a;
  --dark-gray: #1e1e2a;
  --medium-gray: #2a2a3a;
  --light-gray: #6c757d;
  --white: #ffffff;
  
  /* Gradient Colors */
  --gradient-start: #0f0c29;
  --gradient-mid: #302b63;
  --gradient-end: #24243e;
  
  /* Font Families */
  --font-display: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Other Variables */
  --border-radius: 8px;
  --transition-speed: 0.3s;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  background-image: linear-gradient(to bottom, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
  background-attachment: fixed;
  position: relative;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-display);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  text-align: center;
  box-shadow: 0 0 15px rgba(188, 19, 254, 0.5);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(188, 19, 254, 0.7);
}

.btn:active {
  transform: translateY(1px);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-speed);
}

.btn:hover::before {
  left: 100%;
  transition: 0.7s;
}

/* Header */
header {
  background-color: rgba(15, 15, 26, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(188, 19, 254, 0.3);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  text-shadow: 0 0 10px var(--neon-purple);
}

.logo a {
  color: var(--white);
  text-decoration: none;
}

.logo span::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 0;
  position: relative;
  transition: all var(--transition-speed) ease;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
  transition: width var(--transition-speed) ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--neon-blue);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url('https://cdna.artstation.com/p/assets/images/images/033/930/638/large/anna-anikeyka-.jpg?1610961737');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(10 10 30 / 36%), rgba(45, 15, 90, 0.8));
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 5rem;
  margin-bottom: 20px;
  letter-spacing: 3px;
  color: var(--white);
  text-shadow: 0 0 20px var(--neon-purple);
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px var(--neon-purple);
  }
  to {
    text-shadow: 0 0 20px var(--neon-purple), 0 0 30px var(--neon-blue);
  }
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--white);
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: var(--dark-gray);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.pexels.com/photos/2387793/pexels-photo-2387793.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.about h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
  color: var(--white);
  position: relative;
}

.about h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-image {
  flex: 1;
}

.image-container {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background-image: url('https://i.pinimg.com/736x/8f/6c/ec/8f6cece27a1ec59e35b35e3f2a14cbfc.jpg');
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(188, 19, 254, 0.3);
}

/* Games Section */
.games {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.games::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.pexels.com/photos/3037914/pexels-photo-3037914.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.games h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
  color: var(--white);
  position: relative;
}

.games h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.game-card {
  background-color: rgba(30, 30, 42, 0.7);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition-speed) ease;
  box-shadow: var(--shadow);
  border: 1px solid rgba(188, 19, 254, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(188, 19, 254, 0.3);
  border: 1px solid rgba(188, 19, 254, 0.4);
}

.game-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

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

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

.game-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.game-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--white);
}

.game-info .btn {
  margin-top: 15px;
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: var(--medium-gray);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.pexels.com/photos/1671324/pexels-photo-1671324.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.features h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
  color: var(--white);
  position: relative;
}

.features h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background-color: rgba(30, 30, 42, 0.7);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: all var(--transition-speed) ease;
  box-shadow: var(--shadow);
  border: 1px solid rgba(188, 19, 254, 0.2);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(188, 19, 254, 0.3);
  border: 1px solid rgba(188, 19, 254, 0.4);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--neon-blue);
  text-shadow: 0 0 10px var(--neon-blue);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--white);
}

.feature-card p {
  font-size: 0.95rem;
}

/* Disclaimer Section */
.disclaimer {
  padding: 100px 0;
  position: relative;
}

.disclaimer h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  color: var(--white);
  position: relative;
}

.disclaimer h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
}

.disclaimer-content {
  background-color: rgba(30, 30, 42, 0.7);
  border-radius: var(--border-radius);
  padding: 30px;
  border: 1px solid rgba(188, 19, 254, 0.2);
  box-shadow: var(--shadow);
}

.disclaimer-content p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Footer */
footer {
  background-color: var(--dark);
  padding: 50px 0 20px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.pexels.com/photos/1029624/pexels-photo-1029624.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-logo {
  flex-basis: 300px;
  margin-bottom: 30px;
}

.footer-logo span {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  display: block;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 0.9rem;
  color: var(--light-gray);
}

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

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--white);
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

.footer-links ul li a:hover {
  color: var(--neon-blue);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 4rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .image-container {
    height: 300px;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(15, 15, 26, 0.95);
    padding: 20px;
    border-bottom: 1px solid rgba(188, 19, 254, 0.3);
    display: none;
    z-index: 999;
  }
  
  nav.active {
    display: block;
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin: 0;
    margin-bottom: 15px;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  h2 {
    font-size: 2rem;
  }
}