/* Layout Styles */

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
  background-color: rgba(10, 13, 23, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 100;
}

.logo img {
  height: 40px;
  vertical-align: middle;
  border-radius: 5px;
}

.nav-buttons {
  display: flex;
  gap: 1rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 3rem 1rem;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(95, 236, 208, 0.08) 0%,
    transparent 70%
  );
  z-index: -1;
}

.hero-logo {
  margin-bottom: 1rem;
}

.hero-logo img {
  width: 150px;
  height: 150px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(95, 236, 208, 0.3);
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero-cta {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.button-group {
  margin: 1rem 0;
}

.gift-code-section {
  margin-top: 2rem;
}

.gift-code-section h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.gift-code {
  font-family: monospace;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* Description Section */
.description {
  text-align: center;
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Info Table Section */
.info-table {
  margin: 2rem auto;
  max-width: 800px;
}

.info-table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--table-border);
}

.info-table td {
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--table-border);
}

.info-table tr td:first-child {
  background-color: var(--secondary-color);
  width: 40%;
}

.info-table tr:nth-child(odd) td:last-child {
  background-color: rgba(28, 33, 51, 0.3);
}

/* Rating Section */
.rating {
  text-align: center;
  margin: 3rem auto;
}

.stars {
  margin-bottom: 0.5rem;
}

.star {
  color: var(--star-color);
  font-size: 2rem;
  margin: 0 0.2rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.rating-text {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background-color: var(--darker-bg);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 3rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a:hover {
  color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar {
    padding: 0.8rem 1rem;
  }

  .footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .info-table td {
    padding: 0.6rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero-logo img {
    width: 100px;
    height: 100px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-cta {
    font-size: 1rem;
  }

  .footer-links {
    gap: 1rem;
    font-size: 0.75rem;
  }

  .info-table td {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
  }
}
