/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
  color: #e0e6ed;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  background: linear-gradient(45deg, #00d4ff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2rem;
  color: #00d4ff;
}

h3 {
  font-size: 1.5rem;
  color: #ffaa33;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
  background: linear-gradient(45deg, #ff6b35, #cc5528);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Age Modal */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.age-modal.show {
  display: flex;
}

.age-modal-content {
  background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid #00d4ff;
}

.age-modal-content h2 {
  color: #00d4ff;
  margin-bottom: 20px;
}

.age-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
  padding: 20px;
  border-top: 2px solid #00d4ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  flex: 1;
}

.cookie-banner a {
  color: #00d4ff;
  text-decoration: none;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.3);
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

/* Burger Menu */
.burger-checkbox {
  display: none;
}

.burger-label {
  display: block;
  width: 30px;
  height: 25px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.burger-line {
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(45deg, #00d4ff, #ff6b35);
  margin-bottom: 6px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 2px;
}

.burger-line:last-child {
  margin-bottom: 0;
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  padding: 80px 20px 20px;
  border-left: 2px solid #00d4ff;
}

.burger-checkbox:checked ~ .nav {
  transform: translateX(0);
}

.nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #00d4ff;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-list {
  list-style: none;
}

.nav-list li {
  margin-bottom: 20px;
}

.nav-link {
  color: #e0e6ed;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  display: block;
  padding: 10px 0;
}

.nav-link:hover {
  color: #00d4ff;
}

body.menu-open {
  overflow: hidden;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2a2f4a 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 212, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 107, 53, 0.1) 0%,
      transparent 50%
    );
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.game-interface {
  flex: 1;
  background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(0, 212, 255, 0.3);
}

.interface-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.interface-body {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-board-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.status,
.update {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 20px;
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
}

.hexagon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  justify-items: center;
}

.hexagon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.hero-text {
  flex: 1;
}

.hero-text h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #b0b6c1;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
}

/* Overview Section */
.overview {
  background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
}

.overview-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.overview-text {
  flex: 1;
}

.overview-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.highlight {
  color: #ffaa33;
  font-weight: 600;
  font-size: 1.2rem !important;
}

.overview-image {
  flex: 1;
}

.overview-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(0, 212, 255, 0.3);
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2a2f4a 0%, #3a3f5a 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(0, 212, 255, 0.5);
  color: rgba(224, 230, 237, 0.6);
  font-size: 1.2rem;
}

/* Features Section */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
  border-radius: 15px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.feature-icon {
  font-size: 3rem;
  min-width: 80px;
  text-align: center;
}

.feature-content h3 {
  margin-bottom: 10px;
}

.feature-content p {
  color: #b0b6c1;
  line-height: 1.6;
}

/* Progress Section */
.progress {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
}

.progress-image {
  margin-bottom: 50px;
  text-align: center;
}

.progress-img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(0, 212, 255, 0.3);
  margin: 0 auto;
  display: block;
}

.progress-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.progress-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
  border-radius: 15px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  position: relative;
}

.progress-item.completed {
  border-color: rgba(76, 175, 80, 0.5);
}

.progress-item.active {
  border-color: rgba(0, 212, 255, 0.8);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.progress-item.upcoming {
  opacity: 0.6;
}

.progress-marker {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.progress-item.completed .progress-marker {
  background: linear-gradient(45deg, #4caf50, #45a049);
  color: white;
}

.progress-item.active .progress-marker {
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  color: white;
  animation: pulse 2s infinite;
}

.progress-item.upcoming .progress-marker {
  background: linear-gradient(45deg, #666, #555);
  color: white;
}

.progress-content h3 {
  margin-bottom: 5px;
}

.progress-content p {
  color: #b0b6c1;
}

.progress-cta {
  text-align: center;
  margin-top: 50px;
}

.progress-cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ffaa33;
}

/* Visual Sneak Peek Section */
.visual-sneak-peek {
  padding: 0;
  position: relative;
  height: 400px;
  overflow: hidden;
}

.visual-background {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a2f4a 0%, #3a3f5a 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tactical-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.7;
}

.visual-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(0, 212, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(255, 107, 53, 0.1) 0%,
      transparent 50%
    );
}

.visual-overlay {
  text-align: center;
  z-index: 2;
  position: relative;
  background: rgba(10, 14, 39, 0.7);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.visual-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.visual-overlay p {
  font-size: 1.2rem;
  color: #b0b6c1;
}

/* Updates Section */
.updates {
  background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
}

.updates-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.update-item {
  padding: 30px;
  background: linear-gradient(135deg, #2a2f4a 0%, #1a1f3a 100%);
  border-radius: 15px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.update-item h3 {
  margin-bottom: 15px;
}

.update-item p {
  line-height: 1.8;
  color: #b0b6c1;
}

/* FAQ Section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  padding: 30px;
  background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
  border-radius: 15px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.faq-item h3 {
  margin-bottom: 15px;
  color: #00d4ff;
}

.faq-item p {
  line-height: 1.8;
  color: #b0b6c1;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 25px;
}

.contact-item strong {
  display: block;
  margin-bottom: 5px;
  color: #00d4ff;
}

.contact-item a {
  color: #ffaa33;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-description {
  margin-top: 30px;
  line-height: 1.8;
  color: #b0b6c1;
}

.contact-form {
  background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #00d4ff;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 8px;
  background: rgba(10, 14, 39, 0.5);
  color: #e0e6ed;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00d4ff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 5px;
}

.checkbox-group label {
  margin-bottom: 0;
  line-height: 1.5;
}

.checkbox-group a {
  color: #00d4ff;
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
  padding: 40px 0 20px;
  border-top: 1px solid rgba(0, 212, 255, 0.3);
}

.footer-content {
  text-align: center;
}

.footer-main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.site-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #00d4ff;
}

.separator {
  color: #ffaa33;
  font-weight: bold;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #b0b6c1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00d4ff;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #e0e6ed;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffaa33;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  padding-top: 20px;
  margin-top: 20px;
}

.footer-bottom p {
  margin: 5px 0;
  font-size: 0.9rem;
  color: #b0b6c1;
}

.ssl-info {
  font-size: 0.8rem !important;
  color: #4caf50 !important;
}

/* Legal Pages Styles */
.legal-page {
  min-height: 100vh;
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
}

.legal-page .container {
  max-width: 800px;
  background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
  padding: 60px;
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.legal-page h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px 0;
  color: #00d4ff;
}

.legal-page h3 {
  font-size: 1.4rem;
  margin: 30px 0 15px 0;
  color: #ffaa33;
}

.legal-page p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #e0e6ed;
}

.legal-page ul {
  margin: 20px 0;
  padding-left: 30px;
}

.legal-page li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: #b0b6c1;
}

.legal-page a {
  color: #00d4ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-page a:hover {
  color: #ffaa33;
  text-decoration: underline;
}

.back-link {
  margin-top: 50px;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 212, 255, 0.3);
}

.back-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-link a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
  text-decoration: none;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 100px 0 40px;
  }

  .legal-page .container {
    padding: 40px 30px;
    margin: 0 15px;
  }

  .legal-page h1 {
    font-size: 2rem;
  }

  .legal-page h2 {
    font-size: 1.5rem;
  }

  .legal-page h3 {
    font-size: 1.2rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .overview-content {
    flex-direction: column;
  }

  .overview-img {
    margin-top: 30px;
  }

  .core-board-img {
    margin-top: 20px;
  }

  .progress-img {
    margin-bottom: 30px;
  }

  .visual-sneak-peek {
    height: 300px;
  }

  .visual-overlay {
    padding: 20px;
  }

  .visual-overlay h2 {
    font-size: 1.8rem;
  }

  .visual-overlay p {
    font-size: 1rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 30px;
  }

  .nav {
    width: 280px;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-main,
  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .hero-text h2 {
    font-size: 1.8rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .age-modal-content {
    padding: 30px 20px;
    margin: 20px;
  }

  .age-buttons {
    flex-direction: column;
    gap: 15px;
  }
}
