.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    outline: none;
}

.logo:focus {
    outline: none;
}

.logo-img {
    height: 55px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-navy);
}

.logo-dot {
    color: var(--primary-teal);
}

/* original styles below */
      body {
        font-family: "Plus Jakarta Sans", sans-serif;
        background-color: #e8e8e8; /* Accent 1 - Light Gray */
        color: #2b325a; /* Dark navy for text */
      }
      .s-rank-gradient {
        background: linear-gradient(135deg, #51aca1 0%, #d4a044 100%);
      }
      .hero-glow {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 800px;
        background: radial-gradient(
          circle at center,
          rgba(81, 172, 161, 0.1) 0%,
          rgba(232, 232, 232, 0) 70%
        );
        pointer-events: none;
        z-index: 0;
      }
      .glass-card {
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(74, 74, 74, 0.2);
        backdrop-filter: blur(12px);
      }
      @keyframes float {
        0% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-12px);
        }
        100% {
          transform: translateY(0px);
        }
      }
      .animate-float {
        animation: float 5s ease-in-out infinite;
      }