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

body {
  font-family: "Open Sans", sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #16213e 100%);
  color: #e8e8e8;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3 {
  font-family: "Cinzel", serif;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

.nav-logo h1 {
  font-size: 1.5rem;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #e8e8e8;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffd700;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ffd700;
  margin: 3px 0;
  transition: 0.3s;
}

/* Buttons */
.btn-primary,
.btn-primary-small {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.btn-primary-small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.btn-primary:hover,
.btn-primary-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 120px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 215, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 215, 0, 0.05) 0%,
      transparent 50%
    );
  z-index: -1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: inline-flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #b8b8b8;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  /* max-width: 400px; */
  height: auto;
  border-radius: 20px;
  border: 2px solid #ffd700;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

/* Game Info */
.game-info {
  padding: 80px 20px;
  background: rgba(255, 215, 0, 0.05);
}

.info-card {
  background: rgba(26, 26, 46, 0.8);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
}

.game-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.metrics {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 2rem;
}

.metric {
  text-align: center;
}

.rating,
.downloads {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffd700;
}

.label {
  color: #b8b8b8;
  font-size: 0.9rem;
}

.description p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.tip {
  color: #ffd700;
  font-style: italic;
}

/* Story Section */
.story {
  padding: 80px 20px;
}

.story h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.story-visual {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.character-card {
  background: rgba(26, 26, 46, 0.6);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.character-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* Gameplay Section */
.gameplay {
  padding: 80px 20px;
  background: rgba(255, 215, 0, 0.03);
}

.gameplay h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.gameplay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gameplay-card {
  background: rgba(26, 26, 46, 0.8);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s;
}

.gameplay-card:hover {
  transform: translateY(-5px);
}

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

.gameplay-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Visual Section */
.visuals {
  padding: 80px 20px;
}

.visuals h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.visual-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.visual-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.visual-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.screenshot {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
}

/* Bonus Section */
.bonus {
  padding: 80px 20px;
  background: rgba(255, 215, 0, 0.05);
}

.bonus h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.bonus-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.bonus-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(26, 26, 46, 0.6);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.bonus-icon {
  font-size: 2rem;
}

/* Reviews Section */
.reviews {
  padding: 80px 20px;
}

.reviews h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.review-card {
  background: rgba(26, 26, 46, 0.8);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.review-rating {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.review-card p {
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author {
  color: #ffd700;
  font-weight: 600;
}

/* FAQ Section */
.faq {
  padding: 80px 20px;
  background: rgba(255, 215, 0, 0.03);
}

.faq h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(26, 26, 46, 0.6);
  margin-bottom: 1.5rem;
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.faq-item h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* Contact Section */
.contact {
  padding: 80px 20px;
}

.contact h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  background: rgba(26, 26, 46, 0.6);
  color: #e8e8e8;
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b8b8b8;
}

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

/* Final CTA */
.final-cta {
  padding: 80px 20px;
  text-align: center;
  background: rgba(255, 215, 0, 0.1);
}

.final-cta h2 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

/* Footer */
.footer {
  background: rgba(10, 10, 10, 0.9);
  padding: 60px 20px 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

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

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #b8b8b8;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #ffd700;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  color: #b8b8b8;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  margin: 15% auto;
  padding: 2rem;
  border: 1px solid #ffd700;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.close {
  color: #ffd700;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.close:hover {
  opacity: 0.7;
}

.modal-content h2 {
  margin-bottom: 1rem;
  color: #ffd700;
}

/* Legal Pages */
.legal-page {
  padding: 120px 20px 60px;
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(26, 26, 46, 0.8);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.last-updated {
  text-align: center;
  color: #b8b8b8;
  margin-bottom: 3rem;
  font-style: italic;
}

.legal-content section {
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  margin-top: 1.5rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-content ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-content a {
  color: #ffd700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.legal-content a:hover {
  border-bottom-color: #ffd700;
}

.back-link {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

@media (max-width: 1200px) {
  .hero {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .visual-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

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

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .story-content {
    grid-template-columns: 1fr;
  }

  .visual-content {
    grid-template-columns: 1fr;
  }

  .visual-showcase {
    grid-template-columns: 1fr;
  }

  .metrics {
    flex-direction: column;
    gap: 1rem;
  }

  .bonus-content {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .nav {
    padding: 1rem;
  }

  .gameplay-grid {
    grid-template-columns: 1fr;
  }

  .bonus-item {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    padding: 100px 15px 40px;
  }

  .legal-content {
    padding: 2rem 1.5rem;
  }

  .legal-content h1 {
    font-size: 2rem;
  }

  .legal-content h2 {
    font-size: 1.5rem;
  }

  .legal-content h3 {
    font-size: 1.2rem;
  }
}
