@font-face {
  font-family: 'SYN';
  src: url('https://cdn.synthenis.com/fonts/syn.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --accent: #3e91ff;
  --bg-primary: #0a0a0a;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --border-default: rgba(255, 255, 255, 0.1);
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'SYN', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Forces site to fit screen perfectly */
  position: relative;
}

/* --- BACKGROUND BLOBS --- */
.blob-container {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  mix-blend-mode: screen;
  animation: float 20s infinite alternate ease-in-out;
}

.blob-1 { width: 50vw; height: 50vw; background: #3e91ff; top: -10%; left: -10%; }
.blob-2 { width: 40vw; height: 40vw; background: #a23eff; bottom: -10%; right: -10%; animation-duration: 25s; }
.blob-3 { width: 30vw; height: 30vw; background: #00d97e; top: 40%; left: 40%; animation-duration: 18s; }

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 50px) scale(1.1); }
}

/* --- MAIN CONTAINER --- */
.container {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  animation: fade-in 1s var(--transition);
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- LOGO --- */
.logo-container {
  padding-top: 4vh;
}

.logo {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 4px 12px rgba(62, 145, 255, 0.4));
}

/* --- CONTENT --- */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  flex: 1;
  justify-content: center;
}

.title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 600;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.date {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6vh;
}

/* --- IMAGE --- */
.screenshot {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 60vh;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
}

/* --- FOOTER --- */
.footer {
  padding-bottom: 2vh;
}

.footer-link {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color 0.2s;
  text-transform: uppercase;
}

.footer-link:hover {
  color: var(--text-secondary);
}
