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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  min-height: 100dvh;
  background: #0a0a0a;
  color: #f0ece4;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  -webkit-text-size-adjust: 100%;
}

/* Rain of photos */
.rain-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.rain-photo {
  position: absolute;
  top: -300px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: fallDown linear infinite;
  object-fit: cover;
}

@keyframes fallDown {
  0% {
    transform: translateY(0) rotate(var(--rot-start));
    opacity: 0;
  }
  5% {
    opacity: var(--max-opacity);
  }
  90% {
    opacity: var(--max-opacity);
  }
  100% {
    transform: translateY(calc(100vh + 400px)) rotate(var(--rot-end));
    opacity: 0;
  }
}

/* Dark overlay so content is readable */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.55) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Main content */
.content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 2rem 1.5rem;
  text-align: center;
}

/* Logo */
.logo-wrapper {
  opacity: 0;
  animation: logoReveal 2s ease-out 0.5s forwards;
  will-change: opacity, transform;
}

.logo {
  width: 280px;
  height: 280px;
  object-fit: contain;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.15), 0 0 80px rgba(100, 150, 255, 0.1);
  background: rgba(255, 255, 255, 0.95);
  padding: 15px;
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  60% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Coming Soon */
.coming-soon {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-top: 1.5rem;
  opacity: 0;
  animation: fadeUp 1.5s ease-out 1.5s forwards;
  color: #fff;
}

/* Info section */
.info {
  opacity: 0;
  animation: fadeUp 1.5s ease-out 2.2s forwards;
  margin-top: 1.5rem;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.tagline {
  font-size: 0.95rem;
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Contact items */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #f0ece4;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.contact-item:hover {
  color: #6cb4ee;
}

.contact-item svg {
  flex-shrink: 0;
}

/* Badges */
.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}

.badge {
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Facebook link */
.fb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-bottom: 1.2rem;
}

.fb-link:hover {
  background: rgba(66, 103, 178, 0.3);
  border-color: #4267B2;
}

.fb-link svg {
  flex-shrink: 0;
}

/* Location */
.location {
  font-size: 0.85rem;
  opacity: 0.5;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Built by */
.built-by {
  display: inline-block;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.built-by:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Tablet */
@media (max-width: 768px) {
  .logo {
    width: 220px;
    height: 220px;
    padding: 12px;
  }

  .coming-soon {
    font-size: 1.6rem;
    letter-spacing: 4px;
    margin-top: 1.2rem;
  }

  .info {
    margin-top: 1rem;
  }

  .tagline {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
  }

  .fb-link {
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .content {
    padding: 1.5rem 1rem;
    justify-content: safe center;
  }

  .logo {
    width: 180px;
    height: 180px;
    padding: 10px;
  }

  .coming-soon {
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-top: 1rem;
  }

  .info {
    margin-top: 0.8rem;
  }

  .tagline {
    font-size: 0.78rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .contact {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .contact-item {
    font-size: 0.95rem;
  }

  .contact-item.email {
    font-size: 0.75rem;
  }

  .badges {
    gap: 0.4rem;
    margin-bottom: 1.2rem;
  }

  .badge {
    padding: 0.25rem 0.7rem;
    font-size: 0.7rem;
  }

  .fb-link {
    padding: 0.6rem 1.3rem;
    font-size: 0.9rem;
  }

  .location {
    font-size: 0.75rem;
  }

  .built-by {
    font-size: 0.65rem;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .logo {
    width: 150px;
    height: 150px;
  }

  .coming-soon {
    font-size: 1rem;
  }
}
