/* DotHound Coming Soon - Modern Redesign */

@font-face {
  font-family: 'VVDS Fifties Exp';
  src: url('VVDS Fifties/VVDS-Fifties-Exp-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html, body {
  overflow-x: hidden !important;
  background: #111 !important;
  color: #ffffff !important;
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #FAFFC5 !important;
  color: #fff !important;
  overflow-x: hidden !important;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1, h2, h3, h4, h5, h6, #headline, .subheadline, p, label, .notify-form, .notify-form input, .notify-form button, #notify-btn {
  color: #000000 !important;
}

main {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 3rem; }
}

.notify-form {
  background: rgba(255,255,255,0.04);
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.04);
  border: 2px solid #000000;
  width: 100%;
  max-width: 420px;
  margin: 0 auto 1.5rem auto;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
.notify-form input[type="email"] {
  background: #222;
  color: #fff;
  border: none;
  outline: none;
  font-size: 1.1rem;
  padding: 0.7rem 1.1rem;
  border-radius: 2rem;
  font-family: inherit;
  width: 220px;
  box-sizing: border-box;
  transition: box-shadow 0.2s;
}
.notify-form input[type="email"]:focus {
  box-shadow: 0 0 0 2px #0002;
}
.notify-form input[type="email"]::placeholder {
  color: #fff !important;
  opacity: 0.7;
}
.notify-form button, #notify-btn {
  background: #fff;
  color: #111 !important;
  border: 2px solid #000000;
  border-radius: 2rem;
  padding: 0.7rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  position: relative;
  outline: none;
  display: block;
}
.notify-form button:hover, #notify-btn:hover {
  background: #222;
  color: #fff;
}
.notify-form button .glow {
  box-shadow: 0 0 0 0 #fff0;
}
.notify-form button:hover .glow, .notify-form button:focus .glow {
  box-shadow: 0 0 24px 8px #fff8, 0 0 0 2px #fff4;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgb(0, 0, 0);
  color: #ffffff;
  font-size: 1.5rem;
  border: 1.5px solid #bbb;
  transition: background 0.2s, color 0.2s, border 0.2s;
  text-decoration: none;
}
.social-icon:hover {
  background: #222;
  color: #fff;
  border-color: #222;
}

footer {
  margin-top: 2rem;
  color: #000000 !important;
  font-size: 1rem;
  letter-spacing: 0.01em;
}



/* Animated Background: Dots and Lines */
#background-animation {
  pointer-events: none;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0; top: 0;
  overflow: hidden;
}
.background-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0ded6;
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
  box-shadow: none;
}
.background-line {
  position: absolute;
  background: #bdb7a3;
  opacity: 0.5;
  z-index: 2;
  border-radius: 2px;
}
.background-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid #e0ded6;
  background: rgba(224,222,214,0.18);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

/* Loading Scanner Animation */
#loading-scanner {
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1);
}
.scanner-bar {
  width: 180px;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #fff 0%, #444 50%, #fff 100%);
  box-shadow: 0 0 24px 8px #fff8, 0 0 0 2px #fff4;
  animation: scanner-move 1.2s infinite linear alternate;
}
@keyframes scanner-move {
  0% { transform: scaleX(0.5) translateY(0); opacity: 0.7; }
  50% { transform: scaleX(1.1) translateY(8px); opacity: 1; }
  100% { transform: scaleX(0.5) translateY(0); opacity: 0.7; }
}

#loading-scanner.hide { opacity: 0; pointer-events: none; }

.container {
  min-height: 100vh;
  width: 100vw;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem 1.5rem 1rem;
  z-index: 2;
  position: relative;
  box-sizing: border-box;
}

#headline {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 1rem 0;
  line-height: 1.1;
  text-align: center;
  letter-spacing: 0.01em;
  text-shadow: none;
}

.subheadline {
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  opacity: 0.95;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 90vw;
}

@media (max-width: 900px) {
  body {
    background: #f8f3e7 !important;
  }
  #logo-animation { width: 160px; height: 80px; }
  #headline { font-size: 2.2rem; }
  .subheadline { font-size: 1.1rem; }
}
@media (max-width: 600px) {
  .container {
    padding: 1.2rem 0.5rem;
  }
  #logo-animation { width: 120px; height: 60px; }
  #headline { font-size: 1.3rem; }
  .subheadline { font-size: 1rem; }
  .notify-form input[type="email"] {
    width: 90vw;
    min-width: 0;
    max-width: 100%;
    font-size: 1.1rem;
    padding: 0.7rem 1rem;
    box-sizing: border-box;
    margin-bottom: 0.5rem;
  }
  .social-icon { width: 36px; height: 36px; font-size: 1.1rem; }
}

.logo-glitch-container {
  position: relative;
  width: 220px;
  max-width: 80vw;
  margin: 0 auto 1.5rem auto;
  display: block;
}
.logo-animated {
  width: 100%;
  display: block;
  z-index: 1;
  position: relative;
  filter: brightness(1.1) contrast(1.1);
}
.glitch-lines {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 8px,
    rgba(255,255,255,0.18) 8px, rgba(255,255,255,0.18) 10px,
    transparent 10px, transparent 18px
  );
  animation: glitch-move 1.2s linear infinite;
  mix-blend-mode: lighten;
}
@keyframes glitch-move {
  0% { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

.logo-svg-glitch {
  width: 220px;
  max-width: 80vw;
  margin: 0 auto 1.5rem auto;
  display: block;
}
.glitch-text {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: bold;
  fill: #fff;
  letter-spacing: 2px;
  paint-order: stroke fill;
  stroke: #fff;
  stroke-width: 0.5px;
}
@media (max-width: 600px) {
  .logo-svg-glitch { width: 140px; }
  .glitch-text { font-size: 32px !important; }
}

.logo-animated {
  width: 100%;
  display: block;
  z-index: 1;
  position: relative;
  filter: brightness(1.1) contrast(1.1);
}
.glitch-lines {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 8px,
    rgba(255,255,255,0.18) 8px, rgba(255,255,255,0.18) 10px,
    transparent 10px, transparent 18px
  );
  animation: glitch-move 1.2s linear infinite;
  mix-blend-mode: lighten;
}
@keyframes glitch-move {
  0% { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

.logo-animated-tech {
  width: 240px;
  max-width: 90vw;
  margin: 0 auto 1.5rem auto;
  display: block;
  position: relative;
}
.logo-tech-text {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: bold;
  fill: #fff;
  letter-spacing: 2px;
  filter: drop-shadow(0 2px 12px #00ffe7aa);
}
#logo-dot {
  filter: drop-shadow(0 0 16px #00ffe7cc);
  transform-origin: 32px 40px;
  animation: dot-pulse 1.2s infinite cubic-bezier(0.4,0,0.2,1);
}
@keyframes dot-pulse {
  0%, 100% { r: 12; opacity: 1; }
  50% { r: 16; opacity: 0.7; }
}
#scan-line {
  animation: scan-move 2.2s linear infinite;
}
@keyframes scan-move {
  0% { opacity: 0.13; y: 38; }
  40% { opacity: 0.33; y: 38; }
  50% { opacity: 0.5; y: 38; }
  60% { opacity: 0.33; y: 38; }
  100% { opacity: 0.13; y: 38; }
}
@media (max-width: 600px) {
  .logo-animated-tech { width: 140px; }
  .logo-tech-text { font-size: 28px !important; }
}

.logo-animated-dothound {
  position: relative;
  width: 320px;
  height: 110px;
  margin: 0 auto 2.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  opacity: 0;
  transform: translateY(40px);
  animation: logo-entrance-fadeup 1.1s cubic-bezier(0.4,0,0.2,1) 0.2s forwards;
}
@keyframes logo-entrance-fadeup {
  0% { opacity: 0; transform: translateY(40px) scale(0.98); }
  60% { opacity: 1; transform: translateY(-8px) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.logo-bg-glow {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(90deg, #fff6 20%, #d1a86a33 80%, transparent 100%);
  filter: blur(18px);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
}
.logo-animated-dothound:hover .logo-bg-glow {
  opacity: 1;
}
.logo-main {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
}
.logo-symbol {
  position: relative;
  width: 48px;
  height: 48px;
  margin-right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.logo-ring-outer {
  inset: 0;
  border: 2px solid #fff6;
  animation: logo-spin 8s linear infinite;
}
.logo-ring-inner {
  inset: 6px;
  border: 1.5px solid #0008;
  animation: logo-spin-rev 6s linear infinite;
}
@keyframes logo-spin {
  100% { transform: rotate(360deg); }
}
@keyframes logo-spin-rev {
  100% { transform: rotate(-360deg); }
}
.logo-dot-center {
  width: 16px;
  height: 16px;
  background: #111;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 12px #d1a86a88, 0 0 0 2px #fff2;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logo-dot-pulse 1.6s infinite alternate;
}
@keyframes logo-dot-pulse {
  0% { box-shadow: 0 0 8px #d1a86a44, 0 0 0 2px #fff2; }
  100% { box-shadow: 0 0 18px #d1a86a, 0 0 0 4px #fff4; }
}
.logo-dot-scan {
  position: absolute;
  top: 2px; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #fff 60%, #d1a86a 100%);
  border-radius: 2px;
  opacity: 0.7;
  animation: logo-scan-move 1.2s linear infinite;
}
@keyframes logo-scan-move {
  0% { top: 2px; opacity: 0.7; }
  50% { top: 11px; opacity: 1; }
  100% { top: 2px; opacity: 0.7; }
}
.logo-micro-dot {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  opacity: 0.9;
  pointer-events: none;
}
.logo-micro-dot1 {
  background: #fff;
  top: -6px; right: -6px;
  animation: logo-float 2.2s infinite linear;
  animation-delay: 0s;
}
.logo-micro-dot2 {
  background: #111;
  top: 14px; left: -7px;
  animation: logo-float 2.2s infinite linear;
  animation-delay: 0.7s;
}
.logo-micro-dot3 {
  background: #d1a86a;
  bottom: -7px; right: 7px;
  animation: logo-float 2.2s infinite linear;
  animation-delay: 1.3s;
}
@keyframes logo-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
  100% { transform: translateY(0); }
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  min-width: 120px;
}
.logo-text {
  font-family: 'Orbitron', 'Exo', 'Rajdhani', Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: #111;
  letter-spacing: 0.04em;
  line-height: 1.1;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
}
.logo-dot-text,
.logo-hound-text {
  font-family: 'VVDS Fifties Exp', sans-serif;
  font-weight: 700;
}
.logo-dot-text {
  color: #ffffff;
}
.logo-hound-text {
  color: #d1a86a;
  position: relative;
  z-index: 2;
  margin-left: 1px;
  display: inline-block;
  transition: color 0.3s;
}
.logo-hound-underline {
  display: block;
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 2px;
  background: #d1a86a;
  border-radius: 2px;
  width: 0%;
  transition: width 0.5s;
  box-shadow: 0 0 8px #d1a86a88;
}
.logo-animated-dothound:hover .logo-hound-underline {
  width: 100%;
}
.logo-tagline {
  font-family: 'Orbitron', 'Exo', 'Rajdhani', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgb(255, 255, 255);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  margin-left: 2px;
  margin-top: 0.1em;
  position: absolute;
  left: 0;
  top: 40px;
  pointer-events: none;
}
.logo-animated-dothound:hover .logo-tagline {
  opacity: 1;
  transform: translateY(0);
}
.logo-neural-lines {
  position: absolute;
  left: 60px;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.logo-neural-line {
  position: absolute;
  height: 2px;
  border-radius: 2px;
  opacity: 0.7;
  pointer-events: none;
}
.logo-neural-line1 {
  top: 50%; left: 20px;
  width: 70px;
  background: linear-gradient(90deg, #fff8 60%, transparent 100%);
  animation: logo-neural-pulse 2.2s infinite;
  animation-delay: 0.5s;
}
.logo-neural-line2 {
  top: 30%; left: 10px;
  width: 50px;
  background: linear-gradient(90deg, #1118 60%, transparent 100%);
  animation: logo-neural-pulse 2.2s infinite;
  animation-delay: 1.2s;
}
.logo-neural-line3 {
  bottom: 30%; left: 30px;
  width: 30px;
  background: linear-gradient(90deg, #d1a86a88 60%, transparent 100%);
  animation: logo-neural-pulse 2.2s infinite;
  animation-delay: 1.7s;
}
@keyframes logo-neural-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
.logo-hover-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.logo-hover-particle {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: opacity 0.4s;
  animation: logo-hover-ping 2s infinite;
}
.logo-hover-particle1 { left: 28%; top: 38%; animation-delay: 0s; }
.logo-hover-particle2 { left: 48%; top: 58%; animation-delay: 0.3s; }
.logo-hover-particle3 { left: 68%; top: 48%; animation-delay: 0.6s; }
.logo-animated-dothound:hover .logo-hover-particle {
  opacity: 1;
}
@keyframes logo-hover-ping {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.7); opacity: 0.2; }
  100% { transform: scale(1); opacity: 0.7; }
}
@media (max-width: 600px) {
  .logo-animated-dothound { width: 98vw; min-width: 0; max-width: 100vw; }
  .logo-main { flex-direction: column; align-items: flex-start; }
  .logo-symbol { margin-right: 0; margin-bottom: 8px; }
  .logo-text { font-size: 1.2rem; }
} 