/* Main Styles */
:root {
  --primary-blue: #0066ff;
  --primary-yellow: #ffcc00;
  --accent-blue: #003399;
  --accent-yellow: #ffaa00;
  --dark: #121212;
  --light: #ffffff;
  --gradient-1: linear-gradient(45deg, var(--primary-blue), var(--accent-blue));
  --gradient-2: linear-gradient(135deg, var(--primary-yellow), var(--accent-yellow));
  --gradient-mix: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Custom Cursor */
.cursor-follower {
  position: fixed;
  width: 30px;
  height: 30px;
  background: rgba(255, 204, 0, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: exclusion;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  z-index: 1000;
  transition: var(--transition);
  background-color: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(10px);
}

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

.logo h1 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--light);
  position: relative;
  z-index: 2;
}

.logo-text {
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.logo-shape {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--primary-yellow);
  border-radius: 50%;
  left: -10px;
  top: -5px;
  opacity: 0.5;
  animation: pulse 4s infinite alternate;
}

nav ul {
  display: flex;
}

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

.nav-link {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
}

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

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

.mobile-menu {
  display: none;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--light);
  margin: 5px 0;
  transition: var(--transition);
}

/* Banner Section */
.banner-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 5%;
}

.abstract-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-blue);
  top: 20%;
  left: 10%;
  opacity: 0.3;
  filter: blur(50px);
  animation: float 15s infinite alternate;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-yellow);
  bottom: 15%;
  right: 15%;
  opacity: 0.3;
  filter: blur(40px);
  animation: float 12s infinite alternate-reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--accent-blue);
  top: 40%;
  right: 30%;
  opacity: 0.2;
  filter: blur(30px);
  animation: float 10s infinite alternate;
}

.banner-content {
  text-align: center;
  max-width: 800px;
  z-index: 1;
}

.banner-content h2 {
  font-size: 4rem;
  margin-bottom: 20px;
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--gradient-1);
  color: var(--light);
  font-weight: 700;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-2);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.cta-button:hover::before {
  opacity: 1;
}

/* Features Section */
.features-section {
  padding: 100px 5%;
  text-align: center;
}

.features-section h2 {
  font-size: 3rem;
  margin-bottom: 60px;
}

.highlight {
  color: var(--primary-yellow);
}

.features-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.feature {
  flex: 1;
  min-width: 250px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-mix);
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon-1 {
  background: var(--gradient-1);
}

.icon-2 {
  background: var(--gradient-mix);
}

.icon-3 {
  background: var(--gradient-2);
}

.feature h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* About Section */
.about-section {
  padding: 100px 5%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.about-art {
  flex: 1;
  min-width: 300px;
  height: 400px;
  border-radius: 20px;
  background: var(--gradient-mix);
  position: relative;
  overflow: hidden;
}

.about-art::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.1) 10px,
    transparent 10px,
    transparent 20px
  );
  animation: slide 20s linear infinite;
}

.about-content {
  flex: 1;
  min-width: 300px;
  padding-left: 50px;
}

.about-content h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.about-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Games Section */
.games-section {
  padding: 100px 5%;
  text-align: center;
}

.games-section h2 {
  font-size: 3rem;
  margin-bottom: 60px;
}

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

.game-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

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

.game-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.game-card h3 {
  padding: 20px 0;
  font-size: 1.2rem;
}

.play-button {
  display: inline-block;
  padding: 10px 30px;
  background: var(--gradient-1);
  color: var(--light);
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.play-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-2);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.play-button:hover::before {
  opacity: 1;
}

/* Contact Section */
.contact-section {
  padding: 100px 5%;
  text-align: center;
}

.contact-section h2 {
  font-size: 3rem;
  margin-bottom: 60px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 10px;
  color: var(--light);
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group label {
  position: absolute;
  top: 15px;
  left: 15px;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  pointer-events: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
  top: -10px;
  left: 10px;
  font-size: 0.8rem;
  background: var(--dark);
  padding: 0 5px;
}

.submit-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--gradient-1);
  color: var(--light);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-2);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.submit-button:hover::before {
  opacity: 1;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-mix);
  border-radius: 50%;
  margin-right: 20px;
}

/* Disclaimer */
.disclaimer {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  border-radius: 10px;
  position: relative;
}

.disclaimer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 204, 0, 0.05),
    rgba(255, 204, 0, 0.05) 10px,
    rgba(0, 102, 255, 0.05) 10px,
    rgba(0, 102, 255, 0.05) 20px
  );
  border-radius: 10px;
}

.disclaimer p {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Footer */
footer {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 50px 5% 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-links a {
  margin-left: 20px;
  position: relative;
  transition: var(--transition);
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-yellow);
  transition: var(--transition);
}

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

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Media Queries */
@media (max-width: 991px) {
  .banner-content h2 {
    font-size: 3.5rem;
  }
  
  .about-content {
    padding-left: 0;
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 5%;
  }
  
  nav ul {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px 0;
  }
  
  nav ul.active {
    display: flex;
  }
  
  nav ul li {
    margin: 15px 0;
    text-align: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .mobile-menu.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .mobile-menu.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  .banner-content h2 {
    font-size: 2.5rem;
  }
  
  .features-section h2,
  .about-content h2,
  .games-section h2,
  .contact-section h2 {
    font-size: 2.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    margin-top: 20px;
  }
  
  .footer-links a {
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  .banner-content h2 {
    font-size: 2rem;
  }
  
  .banner-content p {
    font-size: 1rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
}