.text-center {
    text-align: center;
}

.info-banner {
    background: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    width: 100%;
}

.target-word {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.5;
    margin-top: 10px;
    letter-spacing: 2px;
}

.mic-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.mic-btn {
    appearance: none;
    border: none;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-size: 3rem;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
}

.mic-btn:hover {
    transform: scale(1.05);
}

.mic-btn:active {
    transform: scale(0.95);
}

.mic-btn.listening {
    background: var(--secondary-coral);
    color: white;
    box-shadow: 0 0 0 15px rgba(255, 107, 107, 0.3);
    animation: mic-pulse 1.5s infinite;
}

@keyframes mic-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    70% {
        box-shadow: 0 0 0 25px rgba(255, 107, 107, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

.pulse-ready {
    animation: float 3s ease-in-out infinite;
}

.status-text {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.1rem;
}

.recognition-result {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.recognition-result span {
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: var(--accent-blue);
    font-size: 1.3rem;
}

.skip-btn {
    border: none;
    background: transparent;
    color: #888;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.2s;
}

.skip-btn:hover {
    background: rgba(0,0,0,0.05);
    color: var(--text-color);
}
