* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Parkinsans', sans-serif;
  background: linear-gradient(135deg, #0a0a0a, #121212, #1b1b1b);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  text-align: center;
}

.footer {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #00FF88dd;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.btn {
  padding: 8px 20px;
  font-weight: 300;
  font-size: 0.9rem;
  background: #202020;
  color: white;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn:hover {
  border-color: #00ff885d;
  box-shadow: 0 0 12px 4px rgba(102, 251, 176, 0.3);
}

.bgrid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
  linear-gradient(rgba(35,35,35,0.2) 1px, transparent 1px),
  linear-gradient(rgba(80, 80, 80, 0.2) 1px, transparent 1px);
  background-size: 40px;
  z-index: -1;
}

.container {
  animation: fadeIn 1s ease-in;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 100vh;
}

.title {
  font-size: 3.5rem;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
  opacity: 0.7;
}

.countdown {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ff88;
  letter-spacing: 1px;
}

.logo-hover-area {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  padding: 20px;
}

.logo-text-group {
  display: flex;
  align-items: center;
}

.logo {
  width: 120px;
  transition: transform 0.4s ease;
}

.visual-text {
  font-weight: 1000;
  font-size: 2.0rem;
  color: #00FF88;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.main-content {
  opacity: 0;
  transition: opacity 0.8s ease;
  width: 100%;
  max-width: 1204px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding-top: 1px;
  padding-bottom: 60px; 
}

.logo-hover-area:hover .logo {
  transform: translateX(-10px);
}

.logo-hover-area:hover .visual-text {
  opacity: 1;
  max-width: 200px;
  margin-left: 15px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #000 0%, #111 100%);
    z-index: -1;
    opacity: 0.7;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
