:root {
  --primary: #FF6B6B;
  --secondary: #4ECDC4;
  --accent: #FFE66D;
  --dark: #2C3E50;
  --light: #F7F9FC;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --text-main: #2D3436;
  --text-light: #636E72;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  color: var(--text-main);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

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

/* Header */
header {
  padding: 2rem 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  margin-left: 2rem;
  transition: color 0.3s;
}

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

/* Hero Section */
.hero {
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--primary), #FF8E53);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.game-card-mini {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.game-card-mini:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.game-card-mini .icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: var(--light);
}

.game-card-mini h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.game-card-mini p {
  color: var(--text-light);
  font-size: 1rem;
}

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.status-live {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
}

.status-coming {
  background: rgba(255, 152, 0, 0.1);
  color: #FF9800;
}

.unavailable {
  filter: grayscale(1);
  opacity: 0.7;
  pointer-events: none;
}

/* Featured App / Details */
.app-showcase {
  background: white;
  border-radius: 30px;
  padding: 4rem;
  margin: 4rem auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}

.app-content {
  flex: 1;
}

.app-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.app-icon {
  width: 180px;
  height: 180px;
  border-radius: 40px;
  background: linear-gradient(135deg, #4CAF50, #8BC34A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 15px 30px rgba(76, 175, 80, 0.3);
}

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

.feature-card {
  padding: 1.5rem;
  border-radius: 20px;
  background: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.download-badges {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.store-button {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.2s;
}

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

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 4rem 0;
  margin-top: 4rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-left: 2rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

/* Privacy Policy Specific */
.policy-content {
  background: white;
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 3rem auto;
}

.policy-content h2 {
  color: var(--dark);
  margin: 2rem 0 1rem;
  font-size: 1.8rem;
}

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

.policy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.policy-content li {
  margin-bottom: 0.5rem;
}

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

  .app-showcase {
    flex-direction: column;
    padding: 2rem;
    text-align: center;
  }

  .app-icon {
    margin: 0 auto 2rem;
  }

  .download-badges {
    justify-content: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

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

  .footer-links a {
    display: block;
    margin: 1rem 0;
  }

  .nav-links {
    display: none;
  }

  /* Simplified for now */
}