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

body {
  font-family: 'Rajdhani', sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
}

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

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

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

.logo {
  position: relative;
}

.logo-text {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 900;
  color: #00ffff;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  letter-spacing: 2px;
}

.logo-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  opacity: 0.3;
  filter: blur(10px);
  z-index: -1;
  animation: pulse 2s ease-in-out infinite alternate;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.nav-link::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #00ffff, #ff00ff);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  transform: translateY(0);
}

.nav-link:hover,
.nav-link.active {
  color: transparent;
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: #00ffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://i.ytimg.com/vi/_8K03cqTjwY/hq720.jpg?sqp=-oaymwE7CK4FEIIDSFryq4qpAy0IARUAAAAAGAElAADIQj0AgKJD8AEB-AH-CYAC0AWKAgwIABABGGUgUihFMA8=&rs=AOn4CLBgmgGIYzvnE2Lfa2tSlCL5nOrpnQ') center/cover;
  filter: brightness(0.3);
  z-index: -2;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
  z-index: 1;
}

.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #ffffff;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(45deg, #00ffff, #0080ff);
  color: #000000;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #00ffff;
}

.btn-secondary:hover {
  background: #00ffff;
  color: #000000;
  transform: translateY(-3px);
}

.btn-game {
  background: linear-gradient(45deg, #ff00ff, #ff0080);
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
}

.btn-game:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 0, 255, 0.4);
}

.btn-back {
  background: linear-gradient(45deg, #333, #555);
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: rgba(0, 0, 0, 0.3);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #00ffff;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.about-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  opacity: 0.9;
}

.about-features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.3);
}

.feature-icon {
  font-size: 1.5rem;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
}

/* Games Section */
.games-preview {
  padding: 6rem 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.games-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.game-card,
.game-card-full {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.game-card:hover,
.game-card-full:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.game-image {
  position: relative;
}

.game-card img,
.game-card-full img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.game-overlay,
.game-overlay-full {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay,
.game-card-full:hover .game-overlay-full {
  opacity: 1;
}

.game-overlay h3,
.game-overlay-full h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #00ffff;
}

.game-overlay-full p {
  margin-bottom: 1rem;
  opacity: 0.8;
}

.games-cta {
  text-align: center;
}

/* Game Pages */
.games-main,
.game-main,
.contact-main,
.policy-main {
  padding-top: 120px;
  min-height: 100vh;
}

.page-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #00ffff;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.page-subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.8;
}

.game-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

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

.game-header h1 {
  font-size: 2.5rem;
  color: #00ffff;
}

.game-frame {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

/* Contact Page */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-form {
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 255, 0.3);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #00ffff;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00ffff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 255, 0.3);
}

.info-card h3 {
  color: #00ffff;
  margin-bottom: 1rem;
}

/* Policy Pages */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.3);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 255, 0.3);
}

.policy-content section {
  margin-bottom: 2rem;
}

.policy-content h2 {
  color: #00ffff;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.policy-content p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Disclaimer Section */
.disclaimer {
  padding: 4rem 0;
  background: rgba(255, 0, 0, 0.1);
  border-top: 2px solid rgba(255, 0, 0, 0.3);
  border-bottom: 2px solid rgba(255, 0, 0, 0.3);
}

.disclaimer-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title {
  font-size: 2.5rem;
  color: #ff6b6b;
  margin-bottom: 2rem;
}

.disclaimer-text p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.highlight {
  background: linear-gradient(45deg, #ff0000, #ff6b6b);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
  font-size: 1.3rem !important;
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(0, 255, 255, 0.3);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  text-align: left;
}

.footer-logo {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 900;
  color: #00ffff;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.footer-brand p {
  margin-top: 0.5rem;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00ffff;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  padding-top: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

/* Animations */
@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  }
  to {
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.8), 0 0 40px rgba(255, 0, 255, 0.3);
  }
}

@keyframes pulse {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 0.6;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

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

  .hero-subtitle {
    font-size: 1.2rem;
  }

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

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-features {
    flex-direction: column;
  }

  .games-grid,
  .games-grid-full {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .game-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .nav-container {
    padding: 1rem;
  }

  .policy-content {
    padding: 2rem;
  }
}

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

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

  .container {
    padding: 0 15px;
  }

  .game-container {
    padding: 1rem;
  }

  .policy-content {
    padding: 1.5rem;
  }
}