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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: #0d0d0d;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px;
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Profile Section */
.profile {
    margin-bottom: 50px;
}

.profile-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.avatar {
    width: 80px;
    height: 80px;
    background: #b3ff00;
    border-radius: 50%;
    flex-shrink: 0;
}

.profile-info h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.tagline {
    font-size: 1rem;
    color: #d0d0d0;
    margin-bottom: 14px;
}

.tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 12px;
    border: 1px solid #ffffff;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #ffffff;
    background-color: transparent;
    font-weight: 500;
}

/* Experience Section */
.experience {
    margin-top: 40px;
}

.experience h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 28px;
}

.experience-item {
    display: grid;
    grid-template-columns: 180px 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
}

.experience-item:not(:last-child) {
    border-bottom: 1px solid #222;
}

.timeline {
    font-family: 'Courier Prime', 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    color: #d0d0d0;
    padding-top: 2px;
}

.company-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.department {
    font-size: 0.85rem;
    color: #8a8a8a;
    line-height: 1.4;
}

.role-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.description {
    font-size: 0.85rem;
    color: #8a8a8a;
    line-height: 1.4;
}

/* Contact Links */
.contact-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.contact-link {
    display: flex;
    align-items: center;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #b3ff00;
}

.contact-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Responsive Design */
@media (max-width: 900px) {
    .experience-item {
        grid-template-columns: 1fr;
        gap: 8px;
        display: flex;
        flex-direction: column;
    }

    .timeline {
        order: 1;
        font-size: 0.75rem;
        opacity: 0.7;
        margin-bottom: 8px;
    }

    .company-info {
        order: 2;
    }

    .company-info h3 {
        font-size: 1.3rem;
        margin-bottom: 4px;
        font-weight: 700;
    }

    .department {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .role-info {
        order: 3;
    }

    .role-info h4 {
        font-size: 1rem;
        margin-bottom: 4px;
        font-weight: 600;
    }

    .description {
        order: 4;
        font-size: 0.8rem;
    }

    .profile-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .container {
        padding: 24px 24px;
    }
}

@media (max-width: 600px) {
    .profile-info h1 {
        font-size: 1.75rem;
    }

    .experience h2 {
        font-size: 1.25rem;
    }

    .avatar {
        width: 60px;
        height: 60px;
    }
}
