/* Add these additional styles for content pages */
/* CSS Variables and Reset */
:root {
  --primary-color: #ff69b4;
  --secondary-color: #ff1493;
  --accent-color: #ffb6c1;
  --dark-bg: #1a0033;
  --darker-bg: #0d0019;
  --text-light: #ffffff;
  --text-gray: #cccccc;
  --gradient-primary: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
  --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
}

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

/* Header Styles */
header {
  background: var(--darker-bg);
  padding: 1rem 0;
  border-bottom: 2px solid var(--primary-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Complete rewrite of navbar styles for proper horizontal layout */
.navbar {
  background: var(--darker-bg);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-light);
  font-size: 1.3rem;
  font-weight: bold;
}

.logo span {
  color: var(--text-light);
}

.logo strong {
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
  padding: 0.5rem 0;
  display: block;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.download-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s;
  font-size: 0.9rem;
  white-space: nowrap;
}

.download-btn:hover {
  transform: translateY(-2px);
}

.login-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.login-link:hover {
  color: var(--primary-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  display: block;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-toggle {
  display: none;
  background: var(--primary-color);
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #ff69b4 100%);
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  color: white;
}

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

.rating-box {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 700px;
  backdrop-filter: blur(10px);
}

.rating {
  margin-bottom: 1.5rem;
}

.rating .label {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-right: 0.5rem;
}

.rating .stars {
  font-size: 1.3rem;
  color: #ffd700;
  font-weight: bold;
}

.bonus-info {
  margin: 1.5rem 0;
}

.bonus-info h3 {
  font-size: 2.2rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.bonus-info p {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 1.5rem;
}

.play-now-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a0033;
  border: none;
  padding: 1rem 3rem;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.play-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.intro-text {
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: white;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Info Bar */
.info-bar {
  background: rgba(255, 105, 180, 0.2);
  padding: 1rem 0;
  border-bottom: 2px solid var(--accent-color);
}

.info-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.info-item {
  text-align: center;
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.info-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

/* Screenshots Section */
.screenshots {
  padding: 4rem 0;
  background: var(--darker-bg);
}

.screenshots h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

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

.screenshot-item {
  border-radius: 15px;
  overflow: hidden;
  border: 3px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.screenshot-item img {
  width: 100%;
  display: block;
}

/* Features Section */
.features {
  padding: 4rem 0;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

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

.feature-card {
  background: rgba(255, 105, 180, 0.1);
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 105, 180, 0.4);
}

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

.feature-card h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-gray);
}

/* Installation Steps */
.installation {
  padding: 4rem 0;
  background: var(--darker-bg);
}

.installation h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

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

.step {
  background: rgba(255, 105, 180, 0.1);
  border: 2px solid var(--accent-color);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
}

.step-number {
  background: var(--gradient-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.step h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.step p {
  color: var(--text-gray);
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  text-align: center;
  background: var(--gradient-secondary);
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Footer */
footer {
  background: var(--darker-bg);
  padding: 3rem 0 1rem;
  border-top: 2px solid var(--primary-color);
}

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

.footer-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 105, 180, 0.3);
  color: var(--text-gray);
}

/* Newsletter Popup */
.newsletter-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.newsletter-popup.active {
  display: flex;
}

.popup-content {
  background: var(--darker-bg);
  border: 3px solid var(--primary-color);
  border-radius: 20px;
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  position: relative;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary-color);
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
}

.popup-content h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.popup-content p {
  color: var(--text-gray);
  margin-bottom: 2rem;
  text-align: center;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form input {
  padding: 1rem;
  border-radius: 10px;
  border: 2px solid var(--accent-color);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.3rem;
}

.newsletter-form button {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contents-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--darker-bg);
    flex-direction: column;
    padding: 1.5rem;
    border-top: 2px solid var(--primary-color);
    gap: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

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

  .nav-menu li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 105, 180, 0.2);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-actions {
    gap: 0.7rem;
  }

  .download-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

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

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--darker-bg);
    flex-direction: column;
    padding: 1rem;
    border-top: 2px solid var(--primary-color);
  }

  nav.active {
    display: flex;
  }

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

  .bonus-info h3 {
    font-size: 1.7rem;
  }

  .hero .bonus-text {
    font-size: 1.5rem;
  }

  .play-now-btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }

  .screenshots-grid,
  .features-grid,
  .steps-container {
    grid-template-columns: 1fr;
  }

  .contents-box {
    padding: 1.5rem;
  }

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

  .contents-column a {
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
  }
}

.content-page {
  padding: 4rem 0;
  min-height: 60vh;
}

.content-page h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.content-page h2:first-child {
  margin-top: 0;
}

.content-page h3 {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.content-page ul,
.content-page ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.content-page li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
  color: var(--text-gray);
}

.content-page strong {
  color: var(--primary-color);
}

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

.value-card {
  background: rgba(255, 105, 180, 0.1);
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
}

.value-card h3 {
  color: var(--primary-color);
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
}

.value-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

.cta-center {
  text-align: center;
  margin: 3rem 0;
}

/* Contact Form Styles */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  border: 2px solid rgba(255, 105, 180, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1rem;
  font-family: inherit;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.submit-btn {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

/* Login Page Styles */
.login-container {
  max-width: 450px;
  margin: 4rem auto;
  padding: 3rem;
  background: rgba(255, 105, 180, 0.05);
  border: 2px solid var(--primary-color);
  border-radius: 20px;
}

.login-container h1 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.login-form .form-group {
  margin-bottom: 1.5rem;
}

.forgot-password {
  text-align: right;
  margin-bottom: 1.5rem;
}

.forgot-password a {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 0.9rem;
}

.forgot-password a:hover {
  color: var(--primary-color);
}

.divider {
  text-align: center;
  margin: 2rem 0;
  color: var(--text-gray);
  position: relative;
}

.divider:before,
.divider:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: rgba(255, 105, 180, 0.3);
}

.divider:before {
  left: 0;
}

.divider:after {
  right: 0;
}

.signup-link {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-gray);
}

.signup-link a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.signup-link a:hover {
  text-decoration: underline;
}

/* Platform specific page styles */
.platform-hero {
  text-align: center;
  padding: 3rem 0;
}

.platform-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
}

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

.feature-item {
  background: rgba(255, 105, 180, 0.1);
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
}

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

.feature-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.feature-item p {
  color: var(--text-gray);
  line-height: 1.6;
}

.download-section {
  text-align: center;
  padding: 4rem 0;
  background: var(--darker-bg);
}

.download-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

/* Completely redesigned contents section with modern card styling */
.contents-section {
  padding: 3rem 0;
  background: var(--darker-bg);
}

.contents-box {
  background: rgba(255, 105, 180, 0.05);
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contents-title {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.contents-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contents-column li {
  margin-bottom: 1rem;
}

.contents-column a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 105, 180, 0.08);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 12px;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.95rem;
  line-height: 1.4;
}

.contents-column a:before {
  content: "▶";
  color: var(--primary-color);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.contents-column a:hover {
  background: rgba(255, 105, 180, 0.15);
  border-color: var(--primary-color);
  transform: translateX(5px);
  color: var(--primary-color);
}

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

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

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

.legal-content ul {
  margin-bottom: 1.5rem;
}

.last-updated {
  font-style: italic;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

/* App Showcase Section */
.app-showcase {
  padding: 4rem 0;
  background: var(--dark-bg);
}

.app-showcase h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.app-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.app-images img {
  width: 100%;
  border-radius: 15px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 5px 20px rgba(255, 105, 180, 0.3);
  transition: transform 0.3s;
}

.app-images img:hover {
  transform: translateY(-5px);
}

/* Download Buttons Section */
.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 105, 180, 0.1);
  border: 2px solid var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 180px;
}

.store-btn:hover {
  background: rgba(255, 105, 180, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.store-icon {
  font-size: 2.5rem;
}

.store-btn div {
  text-align: left;
}

.store-btn small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-gray);
}

.store-btn strong {
  font-size: 1.1rem;
  display: block;
}

/* Content Block Styling */
.content-block {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.content-block p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-gray);
  font-size: 1.05rem;
}

.content-block h3 {
  color: var(--accent-color);
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
}

/* Added */
