@font-face {
  font-family: 'CustomFont';
  src: url('font.ttf') format('truetype');
}

:root {
  --accent: #ffffff;
  --bg: #000;
  --card-bg: rgba(255,255,255,0.05);
  --button-bg-hover: #fff;
  --button-color-hover: #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'CustomFont', sans-serif;
  background-color: var(--bg);
  color: #fff;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  letter-spacing: 0.04em;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Overlay */
#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 100;
  transition: opacity 1s ease, transform 1s ease;
  text-align: center;
  text-shadow: 0 0 15px #fff;
}

.overlay-hide {
  opacity: 0;
  transform: scale(1.05);
}

/* Particles */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Main content */
main {
  position: relative;
  z-index: 10;
  opacity: 0;
  transition: opacity 1s ease;
  width: 100%;
  max-width: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
}

/* Text and forms */
.hero-text {
  text-align: center;
  width: 100%;
}

.hero-title {
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(255,255,255,0.6);
}

.hero-subtitle {
  margin-top: 0.5rem;
  font-size: clamp(0.6rem, 2.2vw, 0.8rem);
  letter-spacing: 0.35em;
  opacity: 0.5;
  text-transform: uppercase;
}

.hero-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.65rem 2rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-button:hover {
  background: var(--button-bg-hover);
  color: var(--button-color-hover);
}

.hero-input {
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  outline: none;
  transition: border 0.2s ease;
}

.hero-input:focus {
  border-color: #fff;
}

/* Cards for dashboard & links */
.card {
  background: var(--card-bg);
  padding: 1rem;
  border-radius: 12px;
  margin: 0.5rem 0;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(255,255,255,0.3);
}

/* Dashboard links container */
.links-container {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
}

/* Big dot for overlay / invite text */
.big-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 6px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.6;
  transform: translateY(-1px);
}

/* Bottom text */
#coming-soon {
  position: fixed;
  bottom: 48px;
  width: 100%;
  text-align: center;
  opacity: 0;
  animation: fadeInBottom 2s ease forwards;
  z-index: 5;
}

.soon-text, .invite-text {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  opacity: 0.45;
  text-transform: uppercase;
}

/* Background pulse */
body::before {
  content: '';
  position: fixed;
  inset: -50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04), transparent 70%);
  animation: pulseBG 10s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulseBG {
  0%,100% { opacity: 0.12; }
  50% { opacity: 0.2; }
}
