* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  height: 100vh;
  overflow: hidden;
  color: white;
}

#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: brightness(0.4) saturate(1.8);
}

#bgImage {
  position: fixed;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: url("../media/image/bg.jpg") center / cover no-repeat;
  z-index: -3;
  filter: brightness(0.8) saturate(1.6);
  transition: transform 0.1s linear;
}


.overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, rgba(40,0,60,0.3), rgba(0,0,0,0.9));
  z-index: -2;
}


.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(20, 0, 30, 0.55);
  border-radius: 20px;
  padding: 25px 35px;
  box-shadow:
    0 0 40px rgba(190, 0, 255, 0.4),
    inset 0 0 20px rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  text-align: center;
}

h1 {
  font-size: 2rem;
  background: linear-gradient(90deg, #ff3bd5, #8b00ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(255, 50, 255, 0.7);
  margin-bottom: 10px;
}


.subtitle {
  color: #cfa6ff;
  margin-bottom: 20px;
  font-size: 0.85em;
  opacity: 0.9;
}


.services {
  display: grid;
  gap: 12px;
}

.card {
  display: block;
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(145deg, #1b001f, #0a000e);
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid rgba(255, 0, 255, 0.18);
  transition: all 0.3s ease;
  box-shadow: 0 0 18px rgba(180, 0, 255, 0.25);
}

.card:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.9);
  border-color: #ff5cff;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background: linear-gradient(90deg, rgba(30,0,40,0.9), rgba(0,0,0,0.9));
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 5;
  box-shadow: 0 0 20px rgba(180, 0, 255, 0.4);
}

.logo {
  font-weight: bold;
  color: #ff5cff;
  letter-spacing: 1px;
}

.status {
  font-size: 0.8rem;
  color: #7CFF7C;
}
