* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0d1117;
    color: #f0f6fc;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) contrast(1.1);
    z-index: -1;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 24px;
    justify-content: space-between;
}

.header-spacer {
    height: 10px;
}

/* Restored 3-Column Grid Layout */
.main-dashboard {
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    gap: 24px;
    align-items: center;
    flex-grow: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.widget {
    background: rgba(22, 27, 34, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 246, 252, 0.1);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.anime-widget {
    height: 440px;
}

.anime-banner {
    width: 100%;
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
}

.anime-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.anime-header h2 {
    font-size: 15px;
    font-weight: 600;
    color: #f0f6fc;
}

.anime-section h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #8b949e;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(240, 246, 252, 0.1);
    padding-bottom: 4px;
}

.anime-section ul {
    list-style: none;
    font-size: 12px;
    color: #c9d1d9;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.clock-display {
    font-family: 'Share Tech Mono', monospace;
    font-size: 72px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.date-display {
    font-size: 16px;
    color: #c9d1d9;
    margin-top: -12px;
    font-weight: 300;
}

.search-form {
    width: 100%;
    max-width: 520px;
}

.search-input {
    width: 100%;
    padding: 14px 20px;
    background: rgba(22, 27, 34, 0.85);
    border: 1px solid rgba(240, 246, 252, 0.15);
    border-radius: 24px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: all 0.2s ease;
}

.search-input:focus {
    border-color: #58a6ff;
    box-shadow: 0 0 10px rgba(88, 166, 255, 0.2);
}

.shortcuts-grid {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.shortcut-icon {
    width: 44px;
    height: 44px;
    background: rgba(22, 27, 34, 0.85);
    border: 1px solid rgba(240, 246, 252, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0f6fc;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.shortcut-icon:hover {
    background: #30363d;
    transform: translateY(-2px);
}

.note-widget {
    height: 440px;
}

.note-widget h3 {
    font-size: 14px;
    font-weight: 600;
    color: #f0f6fc;
}

#quick-note {
    width: 100%;
    flex-grow: 1;
    background: rgba(13, 17, 23, 0.6);
    border: 1px solid rgba(240, 246, 252, 0.1);
    border-radius: 8px;
    padding: 10px;
    color: #c9d1d9;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    resize: none;
    outline: none;
}

#quick-note:focus {
    border-color: #58a6ff;
}

.btn-clear {
    background: rgba(240, 246, 252, 0.1);
    border: none;
    border-radius: 6px;
    padding: 8px;
    color: #f0f6fc;
    font-size: 12px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-clear:hover {
    background: rgba(240, 246, 252, 0.2);
}

@media (max-width: 1024px) {
    .main-dashboard {
        grid-template-columns: 1fr;
        height: auto;
    }
    .widget {
        display: none;
    }
}

