body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    min-height: 100vh;
    transition: background-color 0.5s ease;
}

.claridad {
    background: linear-gradient(135deg, #AAB4F8 0%, #AAB4F8 100%);
}

.calma {
    background: linear-gradient(135deg, #F7CCE7 0%, #F7CCE7 100%);
}

.constancia {
    background: linear-gradient(135deg, #B8E4F2 0%, #B8E4F2 100%);
}

.timer-square {
    width: 300px;
    height: 150px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 4px solid transparent;
    transition: border-color 0.5s ease;
}

.text-gray-900 .timer-square {
    border-color: #E6E6FA;
    background-color: rgba(230, 230, 250, 0.5);
}

.timer-progress {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
}

.timer-progress-bar {
    position: absolute;
    width: 0%;
    height: 100%;
    transition: width 1s linear;
}

.claridad .timer-progress-bar {
    background: #AAB4F8;
}

.calma .timer-progress-bar {
    background: #F7CCE7;
}

.constancia .timer-progress-bar {
    background: #B8E4F2;
}

.timer-inner {
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background: white;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.intention-btn {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.intention-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.intention-btn.active {
    font-weight: 600;
    transform: translateY(-2px) scale(1.2);
    z-index: 10;
    position: relative;
}

.intention-btn {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    color: #333;
}

.intention-btn[data-intention="claridad"] {
    background-color: #AAB4F8;
}

.intention-btn[data-intention="calma"] {
    background-color: #F7CCE7;
}

.intention-btn[data-intention="constancia"] {
    background-color: #B8E4F2;
}

.text-gray-900 #current-intention {
    display: none;
}

.claridad #current-intention,
.calma #current-intention,
.constancia #current-intention {
    display: block;
    color: #333;
}

.calma .timer-inner,
.constancia .timer-inner,
.claridad .timer-inner {
    color: #333;
}

.text-gray-900 #completed-blocks,
.text-gray-900 .motivational-phrase {
    color: #333;
}

.calma #completed-blocks,
.constancia #completed-blocks,
.claridad #completed-blocks,
.calma .motivational-phrase,
.constancia .motivational-phrase,
.claridad .motivational-phrase {
    color: #333;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(79, 70, 229, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

.logo {
    height: 60px;
    width: auto;
}

.motivational-phrase {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
    color: var(--dark);
}

.motivational-phrase.show {
    opacity: 1;
    transform: translateY(0);
}

.coffee-btn {
    background: #2D3748;
    color: white;
    border: 2px solid #4A5568;
    border-radius: 12px;
    padding: 12px 20px;
    min-width: 280px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(45, 55, 72, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
}

.coffee-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 55, 72, 0.4);
    background: #1A202C;
    border-color: #2D3748;
}

a.flex.items-center {
    text-decoration: none;
}

a.flex.items-center:hover {
    text-decoration: none;
}
.control-btn {
    background: #5145e2;
    color: #fff;
    transition: all 0.3s;
    width: 120px;
    text-align: center;
}
.text-gray-900 .control-btn {
    background: #5145e2;
    color: #111;
}
.text-gray-900 .control-btn:hover {
    background: #372fa3;
}
.control-btn:hover {
    background: #372fa3;
}
.control-btn:active {
    background: #fff;
    color: #5145e2;
}

.timer-square.break-mode {
    border-color: #10B981 !important;
}

.timer-square.break-mode .timer-progress {
    background: rgba(16, 185, 129, 0.2);
}

.timer-square.break-mode .timer-progress-bar {
    background: #10B981 !important;
}

.timer-square.break-mode .timer-inner {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10B981;
}

.timer-square.break-mode #current-intention {
    color: #065F46 !important;
    font-weight: 600;
}

.timer-square.break-mode #time-display {
    color: #065F46 !important;
}

.break-btn {
    font-size: 0.875rem;
    font-weight: 500;
    border: 2px solid #10B981;
    background: rgba(16, 185, 129, 0.1) !important;
    color: #065F46 !important;
}

.break-btn:hover {
    background: rgba(16, 185, 129, 0.2) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

.break-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.break-btn i {
    color: #10B981;
}