/* --- Pomodoro & Level 1 Features --- */

.pomodoro-section {
    padding: 1rem;
    margin-bottom: 2rem;
}

.pomodoro-card {
    background: linear-gradient(135deg, #2D1B4E 0%, #1A1225 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pomodoro-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.pomodoro-header h3 {
    font-size: 1.1rem;
    color: #E0E0E0;
}

.timer-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 6px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    color: white;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 20px rgba(103, 58, 183, 0.3);
}

.pomo-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 1rem;
}

.btn-pomo-start {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-pomo-reset,
.btn-pomo-mode {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 12px;
    cursor: pointer;
}

.pomo-hint {
    font-size: 0.85rem;
    color: #AAA;
}

/* Data Mgmt */
.data-mgmt {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 1rem;
    margin-bottom: 5rem;
}

.btn-text {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
}