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

body,
html {
  font-family: "Inter", sans-serif;
  color: #fff;
  background: #000;
  height: 100%;
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.background {
  position: absolute;
  inset: 0;
  background: url("images/background.jpg") no-repeat center center/cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: 1s;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header {
  padding-top: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .header-inner {
    justify-content: flex-start;
  }
}

.logo-box {
  width: 100px;
  height: 80px;
  overflow: hidden;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 1.5rem;
  min-height: 100vh;
}

.badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .title {
    font-size: 3.5rem;
  }
}

.title span {
  color: #ccc;
}

.subtitle {
  font-size: 1.2rem;
  color: #c0c0c0;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  width: 100%;
}

.feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.8rem 1.2rem;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease;
}

.feature:hover {
  background: rgba(255, 255, 255, 0.1);
}

.icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.icon svg {
  color: #ddd;
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature p {
  color: #bdbdbd;
  font-size: 0.9rem;
}

.footer {
  padding: 2rem 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-container {
    align-items: center;
  }
}

.footer-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: #ccc;
  font-size: 0.85rem;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-item i {
  width: 16px;
  height: 16px;
  color: #bdbdbd;
}

.footer-item a {
  text-decoration: none;
  color: #bdbdbd;
}

.footer-bottom {
  margin-top: 1.5rem;
  text-align: center;
  color: #888;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.2rem;
}

:root {
  --video-top-space: 260px;
  --video-bottom-space: 180px;
}

.hero-video {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 1.5rem auto;
  display: block;
  max-width: 800px;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .hero-video {
    max-width: 700px;
  }
}
@media (min-width: 1200px) {
  .hero-video {
    max-width: 800px;
  }
}
