* {
  box-sizing: border-box;
}
:root {
  --primary: #d00;
  --primary-dark: #900;
  --bg-dark: #0a0a0a;
  --bg-secondary: #151515;
  --bg-tertiary: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  --text-muted: #aaaaaa;
}
html {
  scroll-behavior: smooth;
}
section[id] {
  scroll-margin-top: 120px;
}
body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
.header {
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 2px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(208, 0, 0, 0.1);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  width: 50px;
  height: 50px;
  border: none;
}
.app-name {
  font-family: "Zen Dots", sans-serif;
  font-size: 1.5rem;
  margin-left: 0.1em;
  color: var(--text-primary);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.nav a:hover::after,
.nav-cta {
  width: 100%;
}
.nav-cta {
  background: var(--primary);
  color: var(--bg-dark);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(208, 0, 0, 0.3);
}
.hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-secondary) 50%, var(--primary) 100%);
  padding: 50px 24px;
  padding-left: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(208, 0, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 10;
}
.hero h1 {
  font-size: 3.2rem;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 800;
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--bg-dark);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 1.05rem;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(208, 0, 0, 0.4);
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-primary);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 1.05rem;
  border: 2px solid var(--text-secondary);
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.hero .social {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero .social span {
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.hero .social a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.hero .social a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}
.hero-visual {
  flex: 1;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-badge {
  position: absolute;
  top: 40px;
  right: 40px;
  background: var(--primary);
  color: var(--bg-dark);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: bounce 3s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.video-demo {
  background: var(--bg-secondary);
  padding: 0;
  text-align: center;
  opacity: 0.8;
}
.video-header {
  padding: 64px 24px 48px 24px;
  margin-bottom: 0;
}
.video-demo h2 {
  color: var(--primary);
  font-size: 2.2rem;
  margin: 0;
}
.video-wrapper {
  width: 100%;
  margin: 0;
  aspect-ratio: 2 / 1;
}
.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: var(--bg-dark);
}
.video-container video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(208, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10;
  pointer-events: none;
}
.video-container:hover .video-play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.features {
  padding: 30px 24px;
  background: var(--bg-dark);
}
.features h2 {
  color: var(--text-primary);
  font-size: 2.2rem;
  margin-bottom: 2px;
  text-align: center;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.6rem;
  margin-top: 0px;
  margin-bottom: 48px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.feature-card {
  background: var(--bg-secondary);
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid rgba(208, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}
.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(208, 0, 0, 0.15);
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 64px;
  height: 64px;
}

.feature-card h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.screenshots-section {
  margin-top: 60px;
  text-align: center;
}
.screenshots-section h3 {
  color: var(--text-primary);
  margin-bottom: 24px;
  font-size: 1.4rem;
}
.screenshots-carousel {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.screenshots-carousel img {
  width: 220px;
  height: 124px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--bg-secondary);
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}
.screenshots-carousel img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(208, 0, 0, 0.2);
}
.series {
  background: var(--bg-secondary);
  padding: 30px 0;
  text-align: center;
}
.series > h2 {
  color: var(--primary);
  font-size: 2.2rem;
  margin: 0 24px 48px;
  text-align: center;
}
.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
}
.carousel-arrow {
  background: rgba(208, 0, 0, 0.2);
  border: 2px solid var(--primary);
  color: var(--text-primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  padding: 0;
}
.carousel-arrow:hover {
  background: var(--primary);
  transform: scale(1.1);
}
.carousel-arrow svg {
  width: 24px;
  height: 24px;
}
.series-carousel {
  width: 100%;
  max-width: 1200px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.series-carousel::-webkit-scrollbar {
  display: none;
}
.series-list {
  display: flex;
  gap: 40px;
  padding: 24px 0;
  min-width: max-content;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}
.series-item {
  background: transparent;
  border-radius: 12px;
  padding: 24px 16px;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
  flex-shrink: 0;
  width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 1.5em;
  margin-right: 1.5em;
}
.series-item:hover {
  transform: translateY(-8px) scale(1.08);
}
.series-item:hover h3 {
  color: var(--primary);
}
.series-item img {
  width: auto;
  height: 100px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0.4em;
  margin-left: 1.0em;
  margin-right: 1.0em;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.series-item:hover img {
  filter: drop-shadow(0 0 10px rgba(208, 0, 0, 0.4));
  transform: scale(1.1);
}
.series-item h3 {
  color: var(--text-muted);
  font-size: 0.7rem;
  margin: 0 0 8px 0;
  font-weight: 700;
  line-height: 1.3;
  transition: all 0.3s ease;
}
.series-item p {
  color: var(--primary);
  font-size: 0.85rem;
  margin: 0;
  font-weight: 600;
}
.coming-soon {
  background: var(--bg-dark);
  padding: 36px 24px 48px 24px;
  text-align: center;
}
.coming-soon h2 {
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.coming-soon .section-subtitle {
  margin-bottom: 40px;
}
.voting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 48px;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: left;
}
.vote-item {
  background: transparent;
  border: none;
  padding: 4px 0;
  color: var(--text-primary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 2px;
}
.vote-item:hover {
  background: transparent;
  border-color: transparent;
  transform: translateX(8px);
}
.vote-item:hover span {
  color: var(--primary);
}
.vote-chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--primary);
  transition: all 0.3s ease;
}
.vote-item:hover .vote-chevron {
  transform: translateX(4px);
}
.vote-item span {
  transition: color 0.3s ease;
}
.vote-link {
  display: inline-block;
  background: var(--primary);
  color: var(--text-primary);
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.vote-link:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(208, 0, 0, 0.3);
}
.contact {
  background: var(--bg-secondary);
  padding: 80px 24px;
  text-align: center;
}
.contact-content {
  max-width: 600px;
  margin: 0 auto;
}
.contact h2 {
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
}
.form-group input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 8px;
  border: 2px solid rgba(208, 0, 0, 0.2);
  background: var(--bg-dark);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: all 0.3s ease;
}
.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(208, 0, 0, 0.1);
}
.btn-notify {
  background: var(--primary);
  color: var(--bg-dark);
  border: none;
  border-radius: 8px;
  padding: 14px 36px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center;
  min-width: 220px;
}
.btn-notify:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(208, 0, 0, 0.3);
}
.privacy-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.business {
  background: var(--bg-dark);
  padding: 80px 24px;
  text-align: center;
}
.business h2 {
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 40px auto;
}
.business-grid > div {
  background: var(--bg-secondary);
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid rgba(208, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.business-grid > div:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(208, 0, 0, 0.15);
}
.business-grid h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.business-grid p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.business-contact {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 32px;
}
.business-contact a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}
.business-contact a:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}
.footer {
  background: var(--bg-tertiary);
  color: var(--text-muted);
  text-align: center;
  padding: 32px 24px;
  font-size: 0.95rem;
  border-top: 2px solid var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}
.footer a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}
@keyframes scroll-auto {
  0% { transform: translateX(0); }
  50% { transform: translateX(calc(-100% + 120px)); }
  100% { transform: translateX(0); }
}
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    padding: 60px 24px;
  }
  .hero-visual {
    height: 300px;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
  .hero-badge {
    top: 20px;
    right: 20px;
  }
}
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    padding: 16px 12px;
  }
  .nav {
    margin-top: 12px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .carousel-wrapper {
    padding: 0 12px;
    gap: 12px;
  }
  .carousel-arrow {
    display: none;
  }
  .hero {
    padding: 40px 16px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-cta {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .series-carousel {
    scroll-behavior: auto;
  }
  .series-list {
    animation: scroll-auto 20s infinite ease-in-out;
  }
  .voting-grid {
    grid-template-columns: 1fr;
    gap: 16px 24px;
  }
  .contact-form {
    flex-direction: column;
  }
  .form-group {
    flex-direction: column;
  }
  .contact-form input {
    width: 100%;
  }
  .business-grid {
    grid-template-columns: 1fr;
  }
  .footer {
    flex-direction: column;
    gap: 12px;
  }
}
