/* Main Content */
main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 130vh;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(127, 66, 167, 0.15) 0%, transparent 30%);
  z-index: -1;
}

.content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 5rem;
  z-index: 999;
}

.content h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 1.5rem 0;
  line-height: 1.3;
  background: linear-gradient(45deg, var(--text-primary), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(127, 66, 167, 0.5);
  white-space: nowrap;
}

.description {
  font-size: 1.4rem;
  line-height: 1.9;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #b7b7b7;
}

.buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 5rem;
}

.tag-box {
  position: relative;
  width: 300px;
  height: 70px;
  border-radius: 45px;
  background: linear-gradient(270deg, #7f42a7, #9b59d1, #6420a0, #7f42a7);
  background-size: 400% 400%;
  animation: gradientRotate 5s ease infinite;
  box-shadow: 0 0 40px rgba(127, 66, 167, 0.7), 0 0 80px rgba(127, 66, 167, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes gradientRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.tag-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(127, 66, 167, 0.9), 0 0 100px rgba(127, 66, 167, 0.5);
}

.tag-box .tag {
  position: absolute;
  inset: 3px;
  background-color: #000000;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.tag-box .tag a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.tag-box:hover .tag a {
  color: #e7b3ff;
  text-shadow: 0 0 10px rgba(127, 66, 167, 0.8);
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}


.btn-signing-main {
  text-decoration: none;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 40px;
  font-size: 1.4rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(127, 66, 167, 0.4);
}

.btn-signing-main:hover {
  background: linear-gradient(45deg, #8f52b7, #7610d5);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(127, 66, 167, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  main {
    min-height: 140vh;
    padding: 3rem 0;
  }

  main::before {
    background: radial-gradient(circle at center, rgba(127, 66, 167, 0.1) 0%, transparent 20%);
  }

  .content {
    max-width: 90%;
    padding: 3rem;
  }

  .content h1 {
    font-size: 3rem;
    white-space: normal;
  }

  .description {
    font-size: 1.4rem;
    max-width: 90%;
    margin-bottom: 3rem;
  }

  .buttons-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .tag-box {
    width: 260px;
    height: 60px;
  }

  .tag-box .tag {
    font-size: 1.1rem;
  }

  .tag-box .tag a {
    font-size: 1.1rem;
  }

  .buttons {
    flex-direction: row;
    gap: 1.5rem;
  }

  .btn-signing-main {
    font-size: 1.1rem;
    padding: 0.9rem 2rem;
  }
}

@media (max-width: 480px) {
  main {
    min-height: 120vh;
  }

  main::before {
    background: radial-gradient(circle at center, rgba(127, 66, 167, 0.1) 0%, transparent 15%);
  }

  .content {
    padding: 2rem;
  }

  .content h1 {
    font-size: 2.2rem;
    white-space: normal;
  }

  .description {
    font-size: 1.2rem;
  }

  .tag-box {
    width: 240px;
    height: 55px;
  }

  .tag-box .tag {
    font-size: 1rem;
  }

  .tag-box .tag a {
    font-size: 1rem;
  }

  .buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-signing-main {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}