/* =====================================================
   BAND GENERATOR – LAYOUT
===================================================== */
.band-generator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 40px;
}

/* =====================================================
   BUTTON
===================================================== */
.button-band {
    padding: 14px 32px;

    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;

    background-color: #007bff;
    border: none;
    border-radius: 16px;

    transition:
        background-color 0.2s ease,
        transform 0.1s ease;
}

.button-band:hover {
    background-color: #0056b3;
}

.button-band:active {
    transform: scale(0.97);
}

/* =====================================================
   RESULT
===================================================== */
.band-result {
    margin-top: 30px;
    text-align: center;

    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.band-result.show {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   TITLES
===================================================== */
.titleName {
    margin-bottom: 12px;

    font-size: 2.8rem;
    color: var(--secondary-color);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4);
}

.nameGenerated {
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #ffffff;
}