@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,600;0,800;1,600&display=swap');

:root {
  --bg-primary: #120e0a;
  --bg-secondary: #1a140f;
  --text-primary: #f5efe6;
  --text-secondary: #c5bdae;
  --accent-gold: #d4af37;
  --accent-gold-hover: #f3e5ab;
  --accent-green: #2e6f40;
  --accent-green-hover: #3d8f53;
  --card-bg: rgba(26, 20, 15, 0.7);
  --border-color: rgba(212, 175, 55, 0.2);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: radial-gradient(circle at 50% 50%, rgba(30, 22, 16, 0.8) 0%, rgba(18, 14, 10, 1) 100%);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(18, 14, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-download-nav {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #b08d26 100%);
  color: var(--bg-primary);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
  transition: var(--transition-smooth);
}

.btn-download-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  background: linear-gradient(135deg, var(--accent-gold-hover) 0%, var(--accent-gold) 100%);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(rgba(18, 14, 10, 0.6), rgba(18, 14, 10, 0.95)), url('assets/bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-bottom: 1px solid var(--border-color);
}

.hero-content {
  max-width: 900px;
  text-align: center;
  z-index: 10;
  animation: fadeInUp 1s ease;
}

.hero-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
  border-radius: 24px;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  animation: pulseGold 3s infinite alternate;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.hero-title span {
  display: block;
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-top: 0.5rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #000;
  color: #fff;
  border: 1px solid #333;
  padding: 0.75rem 1.75rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.btn-store:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.btn-store svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.2;
}

.store-text span {
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #888;
}

.store-text strong {
  font-size: 1.1rem;
}

/* Sections General */
section {
  padding: 7rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary) 40%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent-gold);
  font-size: 2rem;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Screenshots Section */
.screenshots-carousel {
  position: relative;
  margin-top: 2rem;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
}

.carousel-image {
  max-width: 100%;
  max-height: 550px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(26, 20, 15, 0.8);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.carousel-prev {
  left: -25px;
}

.carousel-next {
  right: -25px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-dot.active {
  background: var(--accent-gold);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--accent-gold);
}

/* Privacy Page Content */
.policy-container {
  padding-top: 8rem;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.policy-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 3.5rem 3rem;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.policy-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 0.5rem;
}

.policy-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.policy-content ul {
  list-style-type: none;
  margin-bottom: 1.5rem;
}

.policy-content li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.policy-content li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

.update-date {
  font-style: italic;
  color: #888;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

/* Footer Section */
footer {
  background-color: #0c0906;
  border-top: 1px solid var(--border-color);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.footer-link {
  text-decoration: none;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.footer-link:hover {
  color: var(--accent-gold);
}

.footer-copyright {
  color: #666;
  font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGold {
  from {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.6);
  }
  to {
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.55);
    border-color: rgba(212, 175, 55, 1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none; /* Add standard mobile drawer if needed, kept simple here */
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-title span {
    font-size: 1.4rem;
  }
  
  .policy-card {
    padding: 2rem 1.5rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .carousel-prev {
    left: -10px;
  }
  
  .carousel-next {
    right: -10px;
  }
}
