@import url('https://fonts.googleapis.com/css2?family=Momo+Trust+Sans:wght@200..800&display=swap');

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

body {
    font-family: "Momo Trust Sans", sans-serif;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(56, 178, 172, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #38b2ac;
    font-weight: 600;
    font-size: 1.2rem;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(56, 178, 172, 0.3);
    transition: all 0.3s ease;
}

.logo:hover img {
    border-color: rgba(56, 178, 172, 0.6);
    transform: scale(1.05);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 80px;
}

.hero {
    padding: 4rem 0;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #38b2ac, #4fd1c7, #81e6d9);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    animation: glow 2s ease-in-out infinite alternate;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.wave {
    font-size: 3rem;
    animation: wave 2s ease-in-out infinite;
    transform-origin: 70% 70%;
    display: inline-block;
    -webkit-text-fill-color: initial;
}

@keyframes wave {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(14deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    30% {
        transform: rotate(14deg);
    }

    40% {
        transform: rotate(-4deg);
    }

    50% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(56, 178, 172, 0.3));
    }

    to {
        filter: drop-shadow(0 0 30px rgba(56, 178, 172, 0.4));
    }
}

.hero p {
    font-size: 1.1rem;
    margin: 0 auto 2rem;
    color: #f8fafc;
    line-height: 1.7;
}

.section {
    margin: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #38b2ac, #4fd1c7);
    margin: 0.5rem auto;
    border-radius: 2px;
}

.card {
    background: rgba(45, 55, 72, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 178, 172, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(56, 178, 172, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(129, 230, 217, 0.6);
    box-shadow: 0 12px 24px rgba(56, 178, 172, 0.2);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(56, 178, 172, 0.1), rgba(129, 230, 217, 0.05));
    border-radius: 0 16px 0 100px;
    pointer-events: none;
}

.experience-card h3 {
    color: #81e6d9;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.experience-card .company {
    font-size: 1.2rem;
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.experience-card .duration {
    color: #cbd5e0;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.achievement {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.achievement:hover {
    background: rgba(56, 178, 172, 0.05);
}

.achievement-icon {
    color: #23f3cc;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.achievement-text {
    flex: 1;
    color: #f8fafc;
}

.project-card {
    background: rgba(45, 55, 72, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 178, 172, 0.3);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
    height: 100%;
    box-shadow: 0 4px 12px rgba(56, 178, 172, 0.1);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #38b2ac, #4fd1c7, #81e6d9);
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(129, 230, 217, 0.6);
    box-shadow: 0 12px 24px rgba(56, 178, 172, 0.2);
}

.project-card h3 {
    color: #81e6d9;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-card p {
    color: #f8fafc;
    margin-bottom: 1rem;
}

.project-date {
    color: #cbd5e0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #b2f5ea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #ffffff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.skills-category {
    margin-bottom: 2rem;
}

.skills-category h4 {
    color: #81e6d9;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: linear-gradient(135deg, rgba(56, 178, 172, 0.3), rgba(129, 230, 217, 0.2));
    color: #b2f5ea;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(129, 230, 217, 0.4);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(56, 178, 172, 0.1);
}

.skill-tag:hover {
    background: linear-gradient(135deg, rgba(56, 178, 172, 0.4), rgba(129, 230, 217, 0.3));
    border-color: rgba(129, 230, 217, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 178, 172, 0.2);
    color: #ffffff;
}

.skills-section {
    background: rgba(45, 55, 72, 0.4);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(56, 178, 172, 0.1);
}

.footer {
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(56, 178, 172, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(56, 178, 172, 0.1);
    border: 1px solid rgba(56, 178, 172, 0.3);
    border-radius: 50%;
    color: #38b2ac;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: rgba(56, 178, 172, 0.2);
    border-color: rgba(56, 178, 172, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(56, 178, 172, 0.1);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .wave {
        font-size: 2.3rem;
    }

    .header-content {
        padding: 0 1rem;
    }

    .logo img {
        width: 35px;
        height: 35px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 1.5rem;
    }

    .container {
        padding: 1rem;
    }
}