/*
Theme Name: Lifep Coming Soon
Author: Lifep
Version: 1.0
*/

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  overflow-x: hidden;
}

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      135deg,
      rgba(3, 15, 25, 0.82),
      rgba(5, 46, 43, 0.72),
      rgba(6, 24, 38, 0.86)
    );
  z-index: -1;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.card {
  width: 100%;
  max-width: 780px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  padding: 56px 36px;
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.logo {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #d1fae5;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 20px;
}

p {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
  max-width: 620px;
  margin: 0 auto;
}

.footer-text {
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 640px) {
  .card {
    padding: 42px 24px;
  }

  h1 {
    font-size: 34px;
  }

  p {
    font-size: 17px;
  }

  .logo {
    font-size: 36px;
  }
}