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

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Mono', monospace;
    background-color: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: url('imgs/cursor.png'), auto;
}

a, button {
    cursor: url('imgs/cursor.png'), pointer;
}

/* Animated Topographic Canvas Background */
#topoCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Page Layout */
.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    scroll-snap-align: start;
}

.page-content {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

/* Profile Image */
.profile-container {
    margin-bottom: 1.5rem;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Hero Text */
.hero-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #fff;
}

/* About Text */
.about-text {
    text-align: center;
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1rem;
}

.about-text a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-text a:hover {
    color: #a0a0a0;
}

/* Section Title */
.section-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #fff;
    text-align: center;
}

/* Timeline */
.timeline {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 1rem;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.timeline-company {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    font-size: 0.95rem;
}

.timeline-company:hover {
    color: #a0a0a0;
}

.timeline-desc {
    color: #666;
    font-size: 0.9rem;
}

.timeline-year {
    color: #555;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.footer-link {
    text-decoration: none;
    color: #87CEEB;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #b8e2f2;
}

/* Responsive */
@media (max-width: 600px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .page {
        padding: 1.5rem;
    }

    .timeline-content {
        flex-direction: column;
        gap: 0.25rem;
    }

    .footer-links {
        gap: 1.5rem;
    }
}
