  .afk-soon-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
  }

  .afk-soon-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 3rem;
    background: rgba(30, 30, 45, 0.425);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    /* border: 1px solid rgba(224, 89, 127, 0.3); */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
  }

  .soon-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-pink);
    margin-bottom: 1.5rem;
  }

  .soon-text {
    color: var(--color-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    width: 400px;
  }

  .hero-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(40, 40, 60, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-pink);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .hero-avatar:hover {
    transform: translateY(-5px);
    background: rgba(224, 89, 127, 0.2);
    color: rgba(224, 89, 127, 1);
  }

  .user-avatar {
    border-radius: 50%;
    border: 1px solid rgba(224, 89, 127, 0.5);
    /* width: 350px; */
    margin: 0 auto 2rem;
    transition: all 0.5s ease;
  }

  .user-avatar:hover {
    border-color: rgba(224, 89, 127, 0.8);
  }

  .soon-heroes {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
  }

  .soon-btn {
    background: var(--color-pink);
    color: var(--color-white) !important;
    border: none;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.5rem;
  }

  .soon-btn:hover {
    background: rgba(224, 89, 127, 0.9);
    transform: translateY(-2px);
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  .floating {
    animation: float 4s ease-in-out infinite;
  }

  .floating-delay-1 { animation-delay: 0.5s; }
  .floating-delay-2 { animation-delay: 1s; }
  .floating-delay-3 { animation-delay: 1.5s; }