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

.navbar {
  background-color: #000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-brand-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-brand-link:hover {
  color: #ff0000;
}

.guide-link {
  color: #808080;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.guide-link:hover {
  color: #fff;
}

.big-coming-soon {
  font-size: 4rem;
  color: #fff;
  text-align: center;
  margin-top: 4rem;
  text-transform: uppercase;
  letter-spacing: 8px;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.big-coming-soon:hover {
  transform: scale(1.1);
  color: #ff0000;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.nav-brand-link {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-brand-link:hover {
  color: #ff0000;
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.social-links a {
  display: flex;
  align-items: center;
}

.social-links img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-links img[alt="Telegram"] {
  filter: invert(1);
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.small-button {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 1px solid #ff0000;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.small-button:hover {
  background-color: rgba(255, 0, 0, 0.5);
  transform: translateY(-2px);
}

body {
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  min-height: 100vh;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 0;
  position: relative;
  margin-top: 4rem;
}

.main-content {
  position: relative;
  min-height: calc(100vh - 4rem);
  margin-top: 0;
  padding-top: 0;
}

body::after {
  content: '';
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('attached_assets/—Pngtree—spotlight illumination bright light stage_3733235-fotor-2025012719029.png');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  opacity: 0.225;
  z-index: -1;
}

header {
  text-align: center;
  margin: 1px 0 1rem 0;
}

.logo {
  max-width: 390px;
  height: auto;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.5));
}

.main-content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
  margin: 0 auto;
  padding: 2rem;
}

.hhspot-section {
  flex: 1;
  text-align: center;
  max-width: 45%;
}

.hhspot-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  filter: brightness(1);
  object-fit: cover;
}

.hhspot-image:hover {
  transform: scale(1.15);
  filter: brightness(1.3) contrast(1.2);
}

.copy-ca-button {
  background-color: #1a1a1a;
  border: 2px solid #ff0000;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  gap: 0.5rem;
}

.copy-ca-button:hover {
  background-color: #ff0000;
  transform: translateY(-5px) scale(1.1);
}

.avax-logo {
  width: 20px;
  height: 20px;
}

.button-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.action-button {
  background-color: #1a1a1a;
  border: 2px solid #ff0000;
  color: #fff;
  padding: 0.25rem 0.5rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.action-button:hover {
  background-color: #ff0000;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.action-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.action-button:hover::before {
  left: 100%;
}

.description-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: rgba(26, 26, 26, 0.9);
  border: 2px solid #ff0000;
  border-radius: 12px;
  text-align: left;
  transition: all 0.3s ease;
}

.description-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.description-box p {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #fff;
}

.description-box p:last-child {
  margin-bottom: 0;
}


.coming-soon-section {
  text-align: center;
  flex: 1;
  max-width: 45%;
}

.coming-soon-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  filter: brightness(1);
  object-fit: cover;
}

.coming-soon-image:hover {
  transform: scale(1.2);
  filter: brightness(1.3);
}

.coming-soon-text:hover {
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}

.coming-soon-text {
  background-color: #1a1a1a;
  border: 2px solid #9945FF;
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 1rem;
}

.coming-soon-text:hover {
  background-color: #14F195;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(20, 241, 149, 0.3);
  text-shadow: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .button-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 1rem;
  }

  .main-content {
    flex-direction: column;
    padding: 1rem;
  }

  .hhspot-section,
  .coming-soon-section {
    max-width: 100%;
  }

  .description-box {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .logo {
    max-width: 280px;
  }

  .navbar {
    padding: 0.75rem 1rem;
  }

  .social-links {
    gap: 1rem;
  }

  .social-links img {
    width: 20px;
    height: 20px;
  }
}