/* Chrome Homepage - Optimized Styles */

:root {
    --bg: #fcfcfb;
    --card: #ffffff;
    --text: #1a1a1a;
    --text-muted: #757570;
    --border: #e0ddd5;
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 32px;
    padding: 32px 0;
    background: var(--card);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.datetime {
    font-family: 'JetBrains Mono', monospace;
}

.time {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.date {
    font-size: 18px;
    color: var(--text-muted);
}

/* Quick Links */
.quick-links {
    display: grid;
    gap: 24px;
}

.quick-links-category {
    background: var(--card);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.category-title {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.category-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}

.quick-link-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: var(--bg);
}

.quick-link-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-link-icon img {
    width: 100%;
    height: 100%;
}

.quick-link-text {
    font-size: 12px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .container { padding: 16px; }
    .time { font-size: 32px; }
    .quick-link-item { width: 80px; padding: 8px; }
}