:root {
  --primary-dark: #101C1D;
  --primary-gold: #F4C06A;
  --text-light: #F7F2E8;
  --text-muted: rgba(247, 242, 232, 0.72);
  --card-bg: rgba(16, 28, 29, 0.78);
  --card-border: rgba(255, 255, 255, 0.14);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--primary-dark);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* Header */
header {
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-gold);
  text-decoration: none;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #FFFFFF;
}

.hero p {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.download-btn {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.download-btn img {
  height: 60px;
  width: auto;
}

.download-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

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

.hero-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-image img:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* Features */
.features {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(16,28,29,0) 0%, rgba(10,14,15,1) 100%);
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #FFFFFF;
}

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

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(244, 192, 106, 0.05);
  border-color: rgba(244, 192, 106, 0.3);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary-gold);
}

.feature-desc {
  font-size: 16px;
  color: var(--text-muted);
}

/* Call to Action */
.cta-section {
  padding: 100px 0;
  text-align: center;
}

.cta-title {
  font-size: 36px;
  margin-bottom: 24px;
}

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

.footer-links {
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 12px;
  transition: color 0.2s ease;
}

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

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 0;
  }
  
  .hero p {
    margin: 0 auto 40px;
  }
  
  .hero-image img {
    transform: none;
  }
  .hero-image img:hover {
    transform: scale(1.02);
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 28px;
  }
}
