:root {
  --bg-dark: #0a0a0f;
  --bg-card: #151520;
  --primary: #6366f1;
  --primary-hover: #4f46e5;
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --accent: #f43f5e;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.logo img {
  border-radius: 8px;
}

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.15) 0%, rgba(10, 10, 15, 1) 70%);
}

.hero-content {
  max-width: 800px;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.watch-btn-container {
  display: flex;
  justify-content: center;
}

.watch-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--primary), #818cf8);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.4);
}

.watch-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 30px -5px rgba(99, 102, 241, 0.6);
}

.main-content {
  padding: 4rem 2rem;
  background-color: var(--bg-dark);
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.content-section {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.content-section h2 {
  font-size: 2rem;
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section h3 {
  font-size: 1.5rem;
  color: #e2e8f0;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.content-section p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.content-section ul {
  list-style-type: none;
  margin-bottom: 1.5rem;
}

.content-section ul li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1.125rem;
}

.content-section ul li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.content-section strong {
  color: #fff;
}

.content-section img.w-full {
  width: 100%;
  border-radius: 16px;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.site-footer {
  background: #050508;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-logo img {
  border-radius: 8px;
}

.footer-desc {
  color: var(--text-muted);
  max-width: 300px;
}

.footer-contact h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.footer-contact address {
  font-style: normal;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

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