:root {
  --bg-dark: #0b0b0b;
  --text-light: #f5f5f5;
  --accent: #c8a96a;
}

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

body {
  font-family: system-ui, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
}

/* Video */
.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.9)
  );
  z-index: -1;
}

/* Content */
.content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;

  animation: fadeIn 1.2s ease forwards;
}

.logo {
  width: 120px;
  margin-bottom: 20px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 12px;
}

p {
  max-width: 500px;
  margin-bottom: 30px;
  opacity: 0.8;
}

/* Form */
.notify {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.notify input {
  padding: 12px 14px;
  border: none;
  outline: none;
  min-width: 220px;
}

.notify button {
  background: var(--accent);
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  transition: 0.3s;
}

.notify button:hover {
  opacity: 0.85;
}

/* Social */
.social {
  margin-top: 30px;
}

.social a {
  margin: 0 10px;
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.7;
}

.social a:hover {
  opacity: 1;
}

/* Cursor */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.cursor-ring {
  width: 30px;
  height: 30px;
  border: 1px solid var(--accent);
  transition: transform 0.15s ease-out;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .bg-video {
    display: none;
  }

  body {
    background: url('poster.jpg') no-repeat center/cover;
  }
}