:root {
  --bg-color: #09090B;
  --primary-color: #CCFF00;
  --surface-color: #18181B;
  --surface-variant: #27272A;
  --text-white: #FFFFFF;
  --text-gray: #A1A1AA;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

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

a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
}

a:hover {
  text-decoration: underline;
  text-shadow: 0 0 10px var(--primary-color);
}

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

/* Header */
header {
  padding: 20px 0;
  border-bottom: 2px solid var(--surface-variant);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 50px;
  height: 50px;
}

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

/* Hero Section */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  border-bottom: 4px solid var(--primary-color);
}

.hero h1 {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: -2px;
}

.hero p {
  font-size: 1.5rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.play-badge {
  display: inline-block;
  transition: transform 0.2s ease;
}

.play-badge:hover {
  transform: scale(1.05);
  text-decoration: none;
}

.play-badge img {
  height: 60px;
}

/* Features Grid */
.features {
  padding: 80px 0;
}

.features-title {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 50px;
  text-align: center;
  border-bottom: 2px dashed var(--primary-color);
  padding-bottom: 20px;
}

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

.feature-card {
  background-color: var(--surface-color);
  border: 2px solid var(--surface-variant);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(204, 255, 0, 0.1);
}

.feature-card img {
  width: 100%;
  max-width: 250px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--surface-variant);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--primary-color);
}

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

/* Privacy Page Content */
.content-section {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}

.content-section h1 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  border-bottom: 4px solid var(--primary-color);
  padding-bottom: 10px;
}

.content-section h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--text-white);
}

.content-section p, .content-section ul {
  margin-bottom: 20px;
  color: var(--text-gray);
  font-size: 1.1rem;
}

.content-section ul {
  padding-left: 20px;
}

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

/* Footer */
footer {
  background-color: var(--surface-color);
  padding: 40px 0;
  text-align: center;
  border-top: 2px solid var(--surface-variant);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

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

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