/* =========================
   Satoshi Font
========================= */
@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

/* =========================
   Reset
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Satoshi', sans-serif;
}

html, body {
  height: 100%;
  background: #000;
  overflow: hidden;
}

/* =========================
   Video Background
========================= */
.video-wrapper {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark cinematic overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* =========================
   Glass Card (Main Frame)
========================= */
.card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 90%;
  max-width: 420px;
  
  padding: 45px 35px;
  border-radius: 22px;

  /* Stronger glass blur */
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  text-align: center;
  color: #ffffff;

  z-index: 2;
}

/* =========================
   Logo
========================= */
.logo-container {
  width: 95px;
  height: 95px;
  margin: 0 auto 28px auto;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container img {
  width: 60%;
  height: auto;
}

/* =========================
   Description
========================= */
.description {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 32px;
  font-weight: 400;
}

/* =========================
   Buttons
========================= */
.buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 15px 0;
  border-radius: 35px;
  background: #000;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: all 0.25s ease;
}

.btn:hover {
  background: #1c1c1c;
  transform: translateY(-3px);
}

/* =========================
   Responsive
========================= */
@media (max-width: 480px) {
  .card {
    padding: 35px 22px;
  }

  .description {
    font-size: 13px;
  }

  .btn {
    font-size: 13px;
    padding: 14px 0;
  }
}
