:root {
  --primary: #00ff88;
  --primary-dark: #00cc6a;
  --secondary: #00d4ff;
  --accent: #ff0080;
  --neon-blue: #00ffff;
  --neon-pink: #ff00ff;
  --neon-green: #00ff88;
  --dark: #0a0a0a;
  --darker: #000000;
  --text: #ffffff;
  --text-light: #cccccc;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #00ff88 0%, #00d4ff 50%, #ff0080 100%);
  --gradient-dark: linear-gradient(135deg, #00cc6a 0%, #00a8cc 100%);
  --gradient-neon: linear-gradient(45deg, #00ff88, #00ffff, #ff0080, #00ff88);
  --shadow: 0 20px 25px -5px rgba(0, 255, 136, 0.3);
  --shadow-lg: 0 25px 50px -12px rgba(0, 255, 136, 0.4);
  --glow: 0 0 20px rgba(0, 255, 136, 0.5);
  --glow-text: 0 0 10px rgba(0, 255, 136, 0.8);
}

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

body {
  font-family: 'Rajdhani', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--darker);
  overflow-x: hidden;
}

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

/* Typography */
.section-title {
  font-family: 'Orbitron', monospace;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--primary);
  text-shadow: var(--glow-text);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

.section-text {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Orbitron', monospace;
}

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

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient);
  color: var(--darker);
  box-shadow: var(--shadow);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--glow);
  color: var(--darker);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  position: relative;
  text-shadow: var(--glow-text);
}

.btn-outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gradient);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-outline:hover::after {
  width: 100%;
}

.btn-outline:hover {
  color: var(--darker);
  box-shadow: var(--glow);
}

/* Sections */
.section {
  padding: 8rem 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.section-dark {
  background: var(--gradient-dark);
  color: var(--white);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/pc-gaming.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-neon);
  opacity: 0.1;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.2; }
}

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

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  animation: slideInDown 1.2s ease;
  text-shadow: var(--glow-text);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
}

.hero-subtitle {
  font-family: 'Orbitron', monospace;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: slideInDown 1.2s ease 0.2s both;
  text-shadow: var(--glow-text);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
}

.hero-description {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  animation: slideInUp 1.2s ease 0.4s both;
  font-weight: 400;
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  animation: slideInUp 1.2s ease 0.6s both;
}

.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.3;
}

.neural-network {
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, var(--neon-blue) 1px, transparent 1px),
    radial-gradient(circle at 80% 40%, var(--neon-pink) 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, var(--neon-green) 1px, transparent 1px);
  background-size: 100px 100px, 150px 150px, 200px 200px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 4rem;
  align-items: center;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid var(--primary);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: var(--shadow);
  padding: 1rem 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  text-shadow: var(--glow-text);
}

.logo-text {
  margin-left: 1rem;
}

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

.nav-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.nav-menu a:hover {
  color: var(--primary);
  text-shadow: var(--glow-text);
}

.mobile-menu {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1000;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
  box-shadow: var(--glow);
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding-top: 80px;
}

.mobile-nav.active {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-nav-menu li {
  margin: 20px 0;
  opacity: 0;
  animation: slideInFromTop 0.5s ease forwards;
}

.mobile-nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-menu li:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-menu li:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-menu li:nth-child(4) { animation-delay: 0.4s; }

.mobile-nav-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: 'Orbitron', monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 15px 30px;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  text-shadow: var(--glow-text);
}

.mobile-nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.mobile-nav-menu a:hover::before {
  width: 100%;
}

.mobile-nav-menu a:hover {
  color: var(--primary);
  transform: translateY(-3px);
  text-shadow: var(--glow);
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Game Cards */
.game-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient);
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), var(--glow);
  border-color: var(--primary);
}

.game-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--darker);
  box-shadow: var(--glow);
}

.game-title {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-description {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.game-features {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-tag {
  background: var(--gradient);
  color: var(--darker);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Technology Cards */
.tech-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.tech-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--darker);
}

.tech-title {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tech-description {
  opacity: 0.9;
  line-height: 1.6;
}

/* Event Cards */
.event-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.event-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.event-title {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-date {
  opacity: 0.8;
  margin-bottom: 1rem;
  font-weight: 600;
}

.event-description {
  opacity: 0.9;
  line-height: 1.6;
}

/* Testimonial Cards */
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--darker);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--text-light);
}

.testimonial-rating {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-shadow: var(--glow-text);
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary);
  font-family: 'Orbitron', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mission Stats */
.mission-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: 'Orbitron', monospace;
  text-shadow: var(--glow-text);
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-image {
  width: 100%;
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
}

.gallery-image:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg), var(--glow);
  border-color: var(--primary);
}

/* About Image */
.about-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary);
}

/* Contact Image */
.contact-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary);
}

/* Card styles */
.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--glow);
  border-color: var(--primary);
}

/* Form styles */
.contact-form {
  display: grid;
  gap: 2rem;
}

.form-input {
  padding: 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
  color: var(--text);
  backdrop-filter: blur(10px);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
  outline: none;
  box-shadow: var(--glow);
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-textarea {
  padding: 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  resize: vertical;
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
  font-family: 'Rajdhani', sans-serif;
  color: var(--text);
  backdrop-filter: blur(10px);
}

.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
  outline: none;
  box-shadow: var(--glow);
}

.form-textarea::placeholder {
  color: var(--text-light);
}

/* Footer styles */
.footer {
  background: var(--darker);
  color: var(--white);
  padding: 4rem 0 2rem;
  border-top: 2px solid var(--primary);
}

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

.footer-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-family: 'Orbitron', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-text {
  margin-bottom: 1rem;
  opacity: 0.9;
}

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

.footer-link {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-link:hover {
  opacity: 1;
  color: var(--primary);
  text-shadow: var(--glow-text);
}

.newsletter-form {
  display: flex;
  gap: 1rem;
}

.footer-newsletter-input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
  font-family: 'Orbitron', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 450px;
  background: var(--darker);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  border: 2px solid var(--primary);
  backdrop-filter: blur(20px);
}

.cookie-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
  font-family: 'Orbitron', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-text {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.cookie-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  align-self: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-link:hover {
  text-shadow: var(--glow-text);
}

/* Responsive design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hamburger {
    display: flex;
  }
  
  .mobile-nav {
    display: none;
  }
  
  .mobile-nav.active {
    display: flex;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 2rem;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .mission-stats {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .cookie-banner {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 1.4rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
} 