body {
    margin: 0;
    font-family: 'Roboto Mono', monospace;
    color: white;
    background-image: url(images/soothing.jpeg);
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
}
.header {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.6);
}
.dashboard {
    display: grid;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 1fr 160px;
    grid-template-areas:
        "timer timer"
        "todo notepad"
        "spotify notepad";
}
.box {
    background: rgba(20,20,20,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.timer-box { grid-area: timer; align-items: center; justify-content: center;}
.todo-box { grid-area: todo;}
.music-box {grid-area: spotify; padding: 0; border: none; background: transparent; }
.note-box {grid-area: notepad; }

.clock-display {
    display: flex;
    gap: 15px;
    font-size: 80px;
    font-weight: bold;
}
.digits { display: flex; gap: 5px;}
.num-card {
    background: #333333;
    padding: 10px;
    border-radius: 8px;
    min-width: 60px;
    text-align: center;
    transition: transform 0.2s;

}
.pop { transform: scale(1.1); color: #00d4ff}
.paper-bg {
    background: #fffdf0;
    flex-grow: 1;
    border-radius: 8px;
    overflow: hidden;
}
textarea {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(transparent, transparent 31px, #94a3b8 31px, #94a3b8 32px);
    line-height: 32px;
    padding: 0 10px;
    border: none;
    outline: none;
    resize: none;
    font-size: 22px;
    color: #333333;
}
ul { list-style: none; padding: 0;}
li {
    background: rgba(255,255,255,0.1);
    margin-bottom: 5px;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
li.done {
    text-decoration: line-through;
    opacity: 0.5;
}
button {
    cursor: pointer;
    background: white;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bold;
}