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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    padding: 0;
    line-height: 1.6;
    position: relative;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.15;
    pointer-events: auto;
}

.main-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.profile-picture {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    animation: slideUp 0.4s ease-out both;
    transition: all 0.3s ease;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.name {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.9;
    letter-spacing: -0.02em;
    animation: slideUp 0.4s ease-out 0.1s both;
}

.bio {
    max-width: 500px;
    margin: -4px auto 0;
    animation: slideUp 0.4s ease-out 0.2s both;
}

.bio-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.age-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.title-main {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
    margin: 2px 0;
}

.bio-text {
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
    animation: slideUp 0.4s ease-out 0.3s both;
}

.social-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.icon-wrapper:hover {
    background: rgba(255, 255, 255, 0.12);
}

.icon {
    width: 18px;
    height: 18px;
    fill: #ffffff;
    flex-shrink: 0;
}

.link-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: fadeIn 1s ease-out 0.6s forwards;
    z-index: 3;
}

.scroll-hint:hover {
    opacity: 0.7 !important;
}

.scroll-text {
    font-size: 0.85rem;
    color: #888888;
    margin-bottom: 8px;
}

.scroll-arrow {
    width: 18px;
    height: 18px;
    color: #888888;
    animation: bounce 2s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.4;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

.about-section {
    min-height: 100vh;
    padding: 80px 20px;
    background: #0a0a0a;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.subsection-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 16px;
    margin-top: 40px;
    color: #ffffff;
}

.description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.projects-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.project-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

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

.project-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.project-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.project-role {
    font-size: 0.9rem;
    color: #999999;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.project-time {
    font-size: 0.9rem;
    color: #777777;
}

.project-desc {
    color: #cccccc;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.project-links {
    margin-bottom: 8px;
}

.project-link {
    color: #4a9eff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.project-link:hover {
    color: #66b3ff;
    text-decoration: underline;
}

.link-separator {
    color: #666666;
    font-size: 0.9rem;
}

.timezone-section {
    color: #cccccc;
    margin: 30px 0;
    font-size: 1rem;
}

.live-clock {
    font-size: 0.9rem;
    color: #999999;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}