:root {
  --primary-color: #FFA500;
  --bg-color: #121212;
  --text-color: #ffffff;
  --secondary-bg: #1e1e1e;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

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

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

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: #000;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
  opacity: 1;
}

/* Header */
header {
  padding: 20px 0;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 10;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 12px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at center, #1e1e1e 0%, #121212 70%);
  padding: 120px 20px 60px;
}

.hero-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.surtitle {
  font-size: 1.1rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 600;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.subtitle {
  font-size: 1.5rem;
  color: #ccc;
  font-weight: 300;
  margin-bottom: 30px;
}

.hero-desc {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
  font-style: italic;
}

.store-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.store-btn-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.store-btn-link:hover {
  transform: scale(1.05);
}

.store-img {
  height: 60px;
  display: block;
  /* SVG badges usually don't need border radius as they have it built-in,
     but adding a small one just in case or checking if it's needed.
     Usually official badges are rects. */
}


/* Sections */
.section-content {
  padding: 80px 0;
}

.section-content.alt-bg {
  background-color: var(--secondary-bg);
}

.section-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: #fff;
}

.section-content h2 .highlight {
  color: var(--primary-color);
  font-size: 0.8em;
  font-weight: 400;
}

.section-content p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-color);
}

.feature-card h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card ul {
  list-style-type: none;
  padding: 0;
}

.feature-card li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  color: #ccc;
}

.feature-card li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.quote {
  font-size: 1.5rem !important;
  font-family: serif;
  /* Optionally use a serif for quotes */
  font-style: italic;
  color: var(--primary-color) !important;
  border-left: 3px solid var(--primary-color);
  padding-left: 20px;
}

/* Legal Pages specific - keep existing but refine */
.legal-text {
  padding-top: 100px;
  /* Offset for fixed header if needed, but we used absolute */
}

/* Footer */
footer {
  background-color: #000;
  padding: 60px 0 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #888;
  font-size: 0.9rem;
}

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

.copyright {
  margin-top: 40px;
  color: #555;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .store-buttons {
    flex-direction: column;
  }
}