/* Game Vault 999 - Static CSS */

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

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #1a0033 0%, #0f0022 50%, #1a0033 100%);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Header & Navigation */
.header {
  background: rgba(10, 0, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(138, 43, 226, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(138, 43, 226, 0.2);
}

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

.logo {
  font-family: "Orbitron", sans-serif;
  font-size: 24px;
  font-weight: 900;
  display: flex;
  gap: 4px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.logo-game {
  color: #00f0ff;
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
}

.logo-vault {
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.logo-999 {
  color: #ff00ff;
  text-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  color: #e0e0e0;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #00f0ff;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

.mobile-menu-btn {
  display: block;
  background: transparent;
  color: #00f0ff;
  padding: 8px;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.menu-icon {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: rgba(10, 0, 20, 0.98);
  border-top: 1px solid rgba(138, 43, 226, 0.3);
}

.mobile-menu.active {
  display: flex;
}

.mobile-link {
  color: #e0e0e0;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

/* Buttons */
.btn-play,
.btn-primary,
.btn-secondary,
.btn-gold,
.btn-cyan,
.btn-ghost {
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-play,
.btn-primary {
  background: linear-gradient(135deg, #8a2be2 0%, #ff1493 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(138, 43, 226, 0.4);
}

.btn-play:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(138, 43, 226, 0.6);
}

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

.btn-secondary:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.btn-gold {
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  color: #1a0033;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
}

.btn-cyan {
  background: linear-gradient(135deg, #00f0ff 0%, #00aaff 100%);
  color: #1a0033;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.4);
}

.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 240, 255, 0.6);
}

.btn-ghost {
  background: transparent;
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.btn-ghost:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
}

.cosmic-bg {
  background: radial-gradient(ellipse at top, rgba(138, 43, 226, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at bottom, rgba(0, 240, 255, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, #1a0033 0%, #0f0022 50%, #2a0055 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(2px 2px at 20% 30%, white, transparent),
    radial-gradient(2px 2px at 60% 70%, white, transparent), radial-gradient(1px 1px at 50% 50%, white, transparent),
    radial-gradient(1px 1px at 80% 10%, white, transparent), radial-gradient(2px 2px at 90% 60%, white, transparent);
  background-size: 200% 200%;
  background-position: 0% 0%;
  opacity: 0.4;
  animation: twinkle 10s ease-in-out infinite;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.6;
  }
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.3) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-logo {
  margin: 0 auto 32px;
}

.hero-logo img {
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(138, 43, 226, 0.4);
}

.hero-title {
  font-size: 48px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #00f0ff 0%, #ffd700 50%, #ff1493 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(0, 240, 255, 0.5);
}

.hero-title-block {
  display: block;
  margin-top: 8px;
}

.hero-subtitle {
  font-size: 24px;
  color: #ffd700;
  margin-bottom: 24px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.hero-text {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-text {
    font-size: 16px;
  }
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-reverse {
  direction: ltr;
}

@media (min-width: 768px) {
  .grid-reverse {
    direction: rtl;
  }

  .grid-reverse > * {
    direction: ltr;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Sections */
.signup-section,
.games-section,
.premier-section,
.mobile-section,
.why-section {
  padding: 80px 20px;
}

.signup-section {
  background: rgba(10, 0, 20, 0.6);
}

.games-section {
  background: linear-gradient(180deg, rgba(10, 0, 20, 0.8) 0%, rgba(26, 0, 51, 0.6) 100%);
}

.premier-section {
  background: linear-gradient(180deg, rgba(26, 0, 51, 0.8) 0%, rgba(10, 0, 20, 0.9) 100%);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title,
.section-title-center {
  font-size: 42px;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
}

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

.section-subtitle,
.section-subtitle-center {
  font-size: 18px;
  color: #b0b0b0;
}

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

.section-text {
  font-size: 16px;
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #00f0ff 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .section-title,
  .section-title-center {
    font-size: 32px;
  }
}

/* Sign Up Section */
.signup-image img {
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(255, 20, 147, 0.3);
}

.signup-content {
  padding: 0 20px;
}

/* Game Cards */
.game-card {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(0, 240, 255, 0.1) 100%);
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(138, 43, 226, 0.4);
  border-color: rgba(138, 43, 226, 0.6);
}

.game-icon {
  font-size: 48px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

.game-title {
  font-size: 24px;
  margin-bottom: 12px;
  color: #ffd700;
}

.game-description {
  color: #b0b0b0;
  margin-bottom: 24px;
}

.showcase-image {
  margin-top: 48px;
  text-align: center;
}

.showcase-image img {
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(138, 43, 226, 0.4);
  margin: 0 auto;
}

/* Premier Section */
.premier-image img,
.mobile-image img {
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(138, 43, 226, 0.3);
}

.premier-label {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Feature List */
.feature-list {
  list-style: none;
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #d0d0d0;
}

.checkmark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00f0ff 0%, #00aaff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.checkmark::after {
  content: "✓";
  color: white;
  font-weight: bold;
  font-size: 14px;
}

/* Feature Cards */
.feature-card {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.15) 0%, rgba(0, 240, 255, 0.1) 100%);
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 240, 255, 0.3);
  border-color: rgba(0, 240, 255, 0.5);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #8a2be2 0%, #ff1493 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(138, 43, 226, 0.4);
}

.feature-title {
  font-size: 20px;
  margin-bottom: 12px;
  color: #00f0ff;
}

.feature-description {
  color: #b0b0b0;
  font-size: 14px;
}

/* Footer */
.footer {
  background: rgba(10, 0, 20, 0.95);
  border-top: 2px solid rgba(138, 43, 226, 0.3);
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-logo {
  font-family: "Orbitron", sans-serif;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
}

.footer-text {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 16px;
  color: #00f0ff;
}

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

.footer-list li {
  margin-bottom: 12px;
}

.footer-link {
  color: #b0b0b0;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #00f0ff;
}

.age-restriction {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #8a2be2 0%, #ff1493 100%);
  border-radius: 8px;
  margin-top: 16px;
}

.age-number {
  font-family: "Orbitron", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #ffd700;
}

.age-text {
  font-weight: 600;
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(138, 43, 226, 0.2);
}

.footer-copyright,
.footer-terms {
  color: #808080;
  font-size: 14px;
  margin-bottom: 8px;
}

/* Content Pages */
.content-page {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(26, 0, 51, 0.8) 0%, rgba(10, 0, 20, 0.9) 100%);
}

.content-container {
  max-width: 900px;
  margin: 0 auto;
}

.content-header {
  text-align: center;
  margin-bottom: 48px;
}

.content-title {
  font-size: 48px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #00f0ff 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-subtitle {
  font-size: 18px;
  color: #b0b0b0;
}

.content-body {
  background: rgba(10, 0, 20, 0.6);
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: 16px;
  padding: 48px;
}

.content-section {
  margin-bottom: 40px;
}

.content-section:last-child {
  margin-bottom: 0;
}

.content-section h2 {
  font-size: 32px;
  color: #00f0ff;
  margin-bottom: 16px;
}

.content-section h3 {
  font-size: 24px;
  color: #ffd700;
  margin-bottom: 12px;
  margin-top: 24px;
}

.content-section p {
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-section ul,
.content-section ol {
  color: #d0d0d0;
  line-height: 1.8;
  margin-left: 24px;
  margin-bottom: 16px;
}

.content-section li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .content-title {
    font-size: 32px;
  }

  .content-body {
    padding: 32px 24px;
  }

  .content-section h2 {
    font-size: 24px;
  }

  .content-section h3 {
    font-size: 20px;
  }
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form {
  background: rgba(10, 0, 20, 0.6);
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: 16px;
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  color: #00f0ff;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: 8px;
  color: white;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.3s ease;
}

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

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

.contact-info-card {
  background: rgba(10, 0, 20, 0.6);
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: 16px;
  padding: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #8a2be2 0%, #ff1493 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-details h3 {
  color: #00f0ff;
  margin-bottom: 4px;
}

.contact-details p {
  color: #b0b0b0;
}

.faq-section {
  margin-top: 48px;
}

.faq-item {
  background: rgba(10, 0, 20, 0.6);
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}

.faq-question {
  font-size: 18px;
  color: #ffd700;
  margin-bottom: 8px;
}

.faq-answer {
  color: #d0d0d0;
  line-height: 1.6;
}
