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

body {
  font-family: 'Cinzel', serif;
  background: radial-gradient(circle at center, #1c1c1c, #0d0d0d);
  color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Container */
.container {
  animation: fadeIn 2s ease;
}

/* Logo */
.logo {
  width: 320px;
  max-width: 80vw;
  margin-bottom: 1rem;
  animation: glow 4s infinite alternate;
}

/* Tagline */
.tagline {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffddb0;
  text-shadow: 2px 2px 6px rgba(255, 140, 0, 0.8);
}

/* Coming Soon - forge theme */
.coming-soon {
  display: inline-block;
  font-size: 1.2rem;
  color: #fff3e6;
  background: linear-gradient(145deg, #3b2f2f, #1a1212);
  border: 2px solid #ff6600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 0 15px rgba(255, 100, 0, 0.6);
  animation: flicker 3s infinite alternate;
}

/* Socials */
.socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.socials a {
  font-size: 2rem;
  color: #f5f5f5;
  transition: transform 0.3s, color 0.3s;
}

.socials a:hover {
  transform: scale(1.2);
  color: #ff6600;
}

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

@keyframes glow {
  from { filter: drop-shadow(0 0 8px #ff8000); }
  to { filter: drop-shadow(0 0 22px #ff5500); }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  45% { opacity: 0.8; }
  55% { opacity: 0.9; }
  65% { opacity: 0.7; }



}
