/* Google Fonts - Exo 2 */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  height: 100%;
  font-family: 'Exo 2', sans-serif;
  background: #0a0e27;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

body {
  background: linear-gradient(135deg, #0a0e27 0%, #000000 100%);
  min-height: 100vh;
}

/* Container */
.container {
  max-width: 1236px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5), 0 0 20px rgba(0, 212, 255, 0.3);
}

h1 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #00d4ff 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2rem;
  color: #00d4ff;
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

h3 {
  font-size: 1.5rem;
  color: #00d4ff;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

h4 {
  font-size: 1.25rem;
  color: #ffd700;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

p {
  color: #e0e0e0;
  margin-bottom: 1rem;
}

a {
  color: #00d4ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: 'Exo 2', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4), 0 4px 15px rgba(0, 212, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 6px 20px rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #00d4ff;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.btn-secondary:hover {
  border-color: #ffd700;
  color: #ffd700;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

/* Header */
.header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
  transition: all 0.3s ease;
}

.logo:hover img {
  filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.8));
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.logo:hover .logo-text {
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav a {
  color: #e0e0e0;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #ffd700);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.nav a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #00d4ff;
  box-shadow: 0 0 5px rgba(0, 212, 255, 0.6);
  transition: all 0.3s ease;
}

.close-icon {
  display: none;
  background: transparent;
  border: none;
  color: #00d4ff;
  font-size: 2rem;
  cursor: pointer;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.hero-content {
  max-width: 1078px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: 3rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Game Section */
.game-section {
  padding: 60px 0;
  background: rgba(26, 31, 58, 0.5);
}

.game-container {
  text-align: center;
}

.game-description {
  font-size: 1.1rem;
  margin: 2rem 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.game-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  padding-bottom: 56.25%;
  border: 3px solid #00d4ff;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.4), inset 0 0 20px rgba(0, 212, 255, 0.1);
  background: #000000;
  overflow: hidden;
}

.game-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features-list li {
  padding: 1rem;
  background: rgba(26, 31, 58, 0.6);
  border-left: 3px solid #00d4ff;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}

.features-list li:hover {
  border-left-color: #ffd700;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
  transform: translateX(5px);
}

/* Why Us Section */
.why-us {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.why-us .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-us-content h2 {
  margin-bottom: 1.5rem;
}

.why-us-content p {
  margin-bottom: 1.5rem;
}

.why-us-image {
  height: 500px;
  border-radius: 12px;
  border: 2px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
  transition: all 0.3s ease;
}

.why-us-image:hover {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
  transform: translateY(-5px);
}

.why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* About Section */
.about {
  padding: 60px 0;
  background: rgba(26, 31, 58, 0.5);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.about-image {
  height: 500px;
  border-radius: 12px;
  margin: 2rem 0;
  border: 2px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
  transition: all 0.3s ease;
}

.about-image:hover {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
  transform: translateY(-5px);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.98) 0%, rgba(0, 0, 0, 0.95) 100%);
  border-top: 2px solid rgba(0, 212, 255, 0.3);
  padding: 60px 0 30px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  width: fit-content;
}

.footer-logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
  transition: all 0.3s ease;
}

.footer-logo:hover img {
  filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.8));
  transform: scale(1.05);
}

.footer-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  letter-spacing: 1px;
}

.footer-tagline {
  color: #b0b0b0;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-nav-section h3 {
  font-size: 1.1rem;
  color: #00d4ff;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
  font-weight: 600;
}

.footer-links,
.footer-legal,
.footer-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a,
.footer-legal a {
  color: #e0e0e0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links a::before,
.footer-legal a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #00d4ff;
}

.footer-links a:hover::before,
.footer-legal a:hover::before {
  left: -15px;
  opacity: 1;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #ffd700;
  padding-left: 15px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.footer-info-list li {
  margin-bottom: 1.5rem;
}

.footer-info-list strong {
  display: block;
  color: #00d4ff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.footer-info-list p {
  color: #b0b0b0;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.copyright {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin: 0;
}

.footer-note {
  color: #808080;
  font-size: 0.85rem;
  font-style: italic;
  margin: 0;
}

/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.popup-content {
  background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
  border: 2px solid #00d4ff;
  border-radius: 12px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.5), inset 0 0 20px rgba(0, 212, 255, 0.1);
  text-align: center;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.popup-content h2 {
  color: #00d4ff;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.popup-content p {
  color: #e0e0e0;
  margin-bottom: 2rem;
}

.popup-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.popup-buttons button {
  min-width: 120px;
}

/* Contact Form */
.contact-section {
  padding: 60px 0;
  background: rgba(26, 31, 58, 0.5);
}

.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  background: rgba(26, 31, 58, 0.8);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 8px;
  color: #ffffff;
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b0b0b0;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

/* Content Pages */
.content-section {
  padding: 60px 0;
  background: rgba(26, 31, 58, 0.5);
}

.content-container {
  max-width: 900px;
  margin: 0 auto;
}

.content-container h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.content-container h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #00d4ff;
}

.content-container ul {
  list-style: none;
  margin: 1.5rem 0;
}

.content-container ul li {
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(26, 31, 58, 0.6);
  border-left: 3px solid #00d4ff;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.content-container ul li h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* Reviews Grid */
.reviews-section {
  padding: 60px 0;
  background: rgba(26, 31, 58, 0.5);
}

.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.review-card {
  background: rgba(26, 31, 58, 0.8);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: #ffd700;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
  transform: translateY(-5px);
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

.review-author {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.review-author strong {
  color: #00d4ff;
  display: block;
  margin-bottom: 0.25rem;
}

.review-author span {
  color: #b0b0b0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(10px);
    border-left: 2px solid rgba(0, 212, 255, 0.3);
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 2rem;
  }

  .nav.active {
    right: 0;
  }

  .close-icon {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }

  .nav ul {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    padding: 40px 0;
  }

  .why-us .container {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-links-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-tagline {
    max-width: 100%;
    text-align: center;
  }

  .popup-buttons {
    flex-direction: column;
  }

  .popup-buttons button {
    width: 100%;
  }
}
