/* --- 1.5. Main Tagline --- */
.main-tagline {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: clamp(1.625rem, 2.5vw, 2.375rem);
    color: transparent;
    background-image: linear-gradient(to right, #481F67 0%, #A020F0 50%, #2a0346 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-align: center;
    margin-top: -4px;
    margin-bottom: 0;
    padding: 0 20px;
    line-height: 0.95;
    letter-spacing: -1.5px;
    background-size: 200% 100%;
    animation: animatedGradientLoop 11s linear infinite;
}

.dark-mode .main-tagline {
    background-image: linear-gradient(to right, #c39eff 0%, #a020f0 50%, #e1c0ff 100%);
}

@keyframes animatedGradientLoop {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* --- Explore Section (Home-only) --- */
.explore-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 10px;
    margin-bottom: 6px;
    width: 100%;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 11px;
    box-sizing: border-box;
    max-height: 120px;
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.35s ease;
}

body.results-active .explore-section {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    margin-bottom: 0;
    pointer-events: none;
}

.explore-section-label {
    font-family: var(--font-secondary, var(--font-primary));
    font-size: clamp(0.5rem, 1.8vw, 0.575rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    opacity: 0.7;
}

.dark-mode .explore-section-label {
    color: var(--text-muted);
    opacity: 0.6;
}

.finds-button-container {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.finds-button {
    background-color: rgba(56, 182, 225, 0.1);
    color: #1a9fc7 !important;
    border: 1.25px solid rgba(56, 182, 225, 0.3);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 7px 14px 7px 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: none;
    width: auto;
    height: auto;
}

.finds-button:hover,
.finds-button:focus {
    background-color: rgba(56, 182, 225, 0.18);
    color: #148baf !important;
    border-color: rgba(56, 182, 225, 0.5);
}

.dark-mode .finds-button {
    background-color: rgba(56, 182, 225, 0.08);
    color: #5fcde6 !important;
    border-color: rgba(56, 182, 225, 0.2);
}

.dark-mode .finds-button:hover,
.dark-mode .finds-button:focus {
    background-color: rgba(56, 182, 225, 0.15);
    color: #7dd8ec !important;
    border-color: rgba(56, 182, 225, 0.35);
}

.finds-button-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    opacity: 0.85;
}

.finds-button-text {
    font-size: clamp(0.625rem, 2vw, 0.7rem);
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1;
    text-align: left;
    letter-spacing: var(--smart-spacing);
    white-space: nowrap;
}