:root {
  --bg: #ffffff;
  --surface: #ffeeee;
  --text: #f83535;
  --muted: #999999;
  --accent: #e91e1e;
  --accent-dark: #a61c1c;
  --border: #ff0707;
  --radius: 20px;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body.landing-screen {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* Loader */
#videoWrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
  z-index: 999;
}
#loadingVideo {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}
#progressContainer {
  width: 300px;
  height: 6px;
  background: #ffffff;
  margin-top: 12px;
  border-radius: 4px;
  overflow: hidden;
}
#progressBar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.5s ease;
}
#progressText {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Header */
.main-header {
  background: var(--surface);
  border-bottom: 2px solid var(--border);
  box-shadow: var(--shadow);
  padding: 16px 32px;
}
.header-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  width: 50px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}
nav ul li a {
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
}
nav ul li a:hover {
  color: var(--accent-dark);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 32px;
}
.btn-primary {
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s ease;
}
.btn-primary:hover {
  background: var(--accent-dark);
}

/* Utility */
.hidden {
  display: none !important;
}
.fade-in {
  animation: fadeIn 0.4s ease-out both;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}