:root {
  --color-bg: #09090b;
  --color-surface: #121214;
  --color-border: #27272a;
  --color-text-main: #f8fafc;
  --color-text-muted: #94a3b8;
  --color-gold: #eab308;
  --color-gold-glow: rgba(234, 179, 8, 0.4);
  --color-accent: #2dd4bf;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-full: 9999px;
  --font-main: 'Outfit', sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 75px;
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-main);
  transition: color 0.2s;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

main {
  padding-top: 75px; /* Offset for fixed header */
  min-height: calc(100vh - 100px);
}

/* -------------------------------------
   HERO SECTION (Split Layout)
-------------------------------------- */
.hero {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  min-height: calc(100vh - 200px);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 550px;
}

.hero-tagline {
  color: var(--color-gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff, #a1a1aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  line-height: 1.5;
}

/* Store Buttons */
.store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  border: 1px solid var(--color-border);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  color: var(--color-text-main);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-store:hover {
  border-color: var(--color-gold);
  box-shadow: 0 4px 20px rgba(234, 179, 8, 0.15);
  transform: translateY(-2px);
}

.btn-store i {
  font-size: 2rem;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-small {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #a1a1aa;
}

.btn-large {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.2px;
}

/* Image Wrapper with Glow */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--color-gold-glow) 0%, rgba(0,0,0,0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-image-wrapper img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255,255,255,0.1);
  display: block;
}

/* -------------------------------------
   FEATURES SECTION
-------------------------------------- */
.features {
  padding: 80px 0;
  background: linear-gradient(to bottom, transparent, var(--color-surface));
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(234, 179, 8, 0.3);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(234, 179, 8, 0.1);
  color: var(--color-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.5;
}

/* -------------------------------------
   ANIMATIONS
-------------------------------------- */
.animate-slide-up {
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-pop-in {
  opacity: 0;
  transform: scale(0.95);
  animation: popIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}


/* -------------------------------------
   RESPONSIVE (MOBILE)
-------------------------------------- */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  
  .hero-content {
    margin: 0 auto;
    align-items: center;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .store-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
}


/* Content Pages (Privacy, Support) */
.page-header {
  padding: 80px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
}

.page-header p {
  color: var(--color-text-muted);
  margin-top: 10px;
  font-size: 1.2rem;
}

.content-block {
  max-width: 800px;
  margin: 0 auto 80px;
}

.content-block h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--color-gold);
}

.content-block h3 {
  font-size: 1.3rem;
  margin: 24px 0 12px;
}

.content-block p, .content-block ul {
  color: #d1d5db;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.content-block ul {
  padding-left: 24px;
}

.content-block li {
  margin-bottom: 10px;
}

/* Contact Box */
.contact-box {
  background: var(--color-surface);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 60px;
}

.contact-box a {
  display: inline-block;
  margin-top: 16px;
  color: var(--color-gold);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 40px 0;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

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