* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Theme variables */
    --text-color: #000000;
    --muted-color: #666666;
    --bg-color: #FFFFFF;

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 100px;
    min-height: 100vh;
    position: relative;
}

/* Time Display */
.time-display {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 400;
    margin-bottom: 8px;
    text-align: left;
}

.time-underline {
    text-decoration: underline;
}

/* Introduction Section */
.intro-section {
    margin-top: 120px;
    margin-bottom: 80px;
}

.intro-text {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 32px;
    max-width: none;
    letter-spacing: -0.025em;
}

/* Divider */
.divider {
    width: 100%;
    height: 1px;
    background-color: #E5E5E5;
    margin: 50px 0;
}

/* Contact Section */
.contact-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 50px 0;
}

.contact-links {
    display: flex;
    gap: 40px;
}

.contact-links a {
    font-size: 16px;
    font-weight: 400;
    color: var(--muted-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: var(--text-color);
}

/* Footer */
.footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 50px;
    padding-top: 30px;
}

.footer-right-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-right {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color); /* match .time-display color */
}

/* Footer: static muted color, no hover effects */
.footer .time-display,
.footer .footer-right,
.footer a {
    color: var(--muted-color);
    text-decoration: none;
}

/* Last.fm widget */
/* Last.fm uses the existing .time-display styling to match the time line */

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 60px 80px;
    }

    .time-display {
        top: 60px;
        right: 80px;
    }

    .intro-text {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 40px 40px;
    }

    .time-display {
        top: 40px;
        right: 40px;
    }

    .intro-section {
        margin-top: 60px;
    }

    .intro-text {
        font-size: 36px;
    }

    .contact-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .contact-links {
        gap: 30px;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }

    .time-display {
        top: 30px;
        right: 20px;
        font-size: 12px;
    }

    .intro-text {
        font-size: 28px;
    }

    .contact-links {
        flex-direction: column;
        gap: 15px;
    }
}

