/* ========================================
   Vulp Games - Styles
   ======================================== */

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

:root {
  --primary: #F47B20;
  --primary-dark: #D96A15;
  --bg: #0D0D1A;
  --bg-light: #141428;
  --surface: #1A1A2E;
  --text: #F0F0F5;
  --text-muted: #9999AA;
  --border: #2A2A40;
  --radius: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Header ---- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 13, 26, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* ---- Hero ---- */

.hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  height: 560px;
  background: url('assets/vulp-bg.svg') center/contain no-repeat;
  opacity: 0.15;
  filter: brightness(0.3);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.highlight {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(244, 123, 32, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ---- Badges ---- */

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-live {
  background: #27AE6020;
  color: #27AE60;
}

.badge-dev {
  background: var(--primary)20;
  color: var(--primary);
}

/* ---- Sections ---- */

.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--bg-light);
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 48px;
}

/* ---- Featured Game ---- */

.featured-game {
  display: flex;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

.featured-game-info {
  flex: 1;
}

.featured-game-title {
  font-size: 28px;
  font-weight: 800;
  margin: 12px 0;
}

.featured-game-desc {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  margin-bottom: 28px;
}

.feature-list li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-muted);
  font-size: 14px;
}

.feature-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.featured-game-preview {
  flex-shrink: 0;
}

/* ---- Phone Mockup ---- */

.phone-mockup {
  width: 260px;
  padding: 16px;
  background: var(--surface);
  border-radius: 28px;
  border: 2px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.phone-screen {
  background: var(--bg);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  justify-content: center;
}

.mini-grid {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.grid-row {
  display: flex;
  gap: 3px;
}

.cell {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  border-radius: 4px;
}

.cell.filled {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.cell.active {
  background: var(--primary)30;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cell.empty {
  background: transparent;
}

/* ---- Games Grid ---- */

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.game-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.2s;
}

.game-card:hover {
  border-color: var(--primary)60;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.game-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.game-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.game-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ---- About ---- */

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

.about-text {
  color: var(--text-muted);
  max-width: 600px;
  margin: 24px auto 48px;
  font-size: 16px;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 40px;
  font-weight: 900;
  color: var(--primary);
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---- Contact ---- */

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

.contact-text {
  color: var(--text-muted);
  margin: 16px 0 28px;
}

/* ---- Footer ---- */

.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

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

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

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

.footer-copy {
  color: var(--text-muted);
  font-size: 13px;
}

/* ---- Privacy Page ---- */

.privacy-page {
  padding: 100px 0 60px;
}

.privacy-page h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.privacy-page .app-name {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 32px;
}

.privacy-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  line-height: 1.8;
  color: var(--text-muted);
}

.privacy-content strong {
  color: var(--text);
  display: block;
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 17px;
}

.privacy-content p {
  margin-bottom: 12px;
}

.privacy-content ul {
  margin: 8px 0 16px 24px;
}

.privacy-content li {
  margin-bottom: 6px;
}

.privacy-content a {
  color: var(--primary);
  text-decoration: none;
}

.privacy-content a:hover {
  text-decoration: underline;
}

.privacy-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

/* ---- Responsive ---- */

@media (max-width: 768px) {
  .featured-game {
    flex-direction: column-reverse;
    text-align: center;
  }

  .feature-list li {
    text-align: left;
  }

  .about-stats {
    gap: 32px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .nav {
    gap: 16px;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }
}
