body {
    background: linear-gradient(135deg, #0A0F1E 0%, #1A1F2E 100%);
    color: #ffffff;
}

.top-section {
    margin-top: 0;
    padding: 0;
}

#section {
    width: 100%;
    max-width: 1200px;
    margin: 10px auto;
    padding: 20px 20px;
    background-color: transparent;
    box-shadow: none;
}

.about-cover {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 400px;
    overflow: hidden;
    margin-bottom: 60px;
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cover-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    z-index: 2;
}

.cover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
    width: 90%;
    max-width: 800px;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cover-text h1 {
    font-size: 2.0rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #ffffff;
    transition: transform 0.6s ease;
}

.cover-text h1 strong {
    font-size: 2.7rem;
    font-weight: 600;
    display: block;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #4F9CF9 0%, #6C63FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.6s ease;
}

.cover-text p {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    color: #a8b2d1;
    transition: transform 0.6s ease;
}

.about-description {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 20px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #a8b2d1;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
}

.self-intro {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 20px;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
}

.self-intro h2 {
    font-size: 2rem;
    font-weight: 500;
    background: linear-gradient(135deg, #4F9CF9 0%, #6C63FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    transition: transform 0.6s ease;
}

.self-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #a8b2d1;
    margin-bottom: 1.5rem;
    transition: transform 0.6s ease;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    margin: 0 auto 80px;
    max-width: 1000px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
}

.profile-img-g {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.6s ease;
}

.profile-img-g img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.profile-info {
    flex: 1;
    transition: transform 0.6s ease;
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #4F9CF9 0%, #6C63FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 0.5rem;
    transition: transform 0.6s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-name .badge {
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background: linear-gradient(135deg, #4F9CF9 0%, #6C63FF 100%);
    color: #ffffff;
}

.badge {
    font-size: 0.9rem;
    color: #ffffff;
    background: linear-gradient(135deg, #4F9CF9 0%, #6C63FF 100%);
    border-radius: 20px;
    padding: 4px 12px;
    margin-left: 12px;
    vertical-align: middle;
    transition: transform 0.6s ease;
    display: inline-block;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-bio {
    font-size: 1.1rem;
    color: #a8b2d1;
    margin: 0.5rem 0;
    transition: transform 0.6s ease;
}

.profile-slogan {
    font-size: 1rem;
    color: #4F9CF9;
    margin-top: 1rem;
    transition: transform 0.6s ease;
}

.scroll-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .about-cover {
        height: 70vh;
        min-height: 400px;
    }

    .cover-text h1 {
        font-size: 1.6rem;
    }

    .cover-text h1 strong {
        font-size: 2.0rem;
    }

    .cover-text p {
        font-size: 1rem;
    }

    .profile-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .profile-img-g {
        width: 120px;
        height: 120px;
    }

    .profile-name {
        font-size: 1.5rem;
    }

    .profile-bio {
        font-size: 1rem;
    }

    .self-intro h2 {
        font-size: 1.8rem;
    }

    .self-intro p {
        font-size: 1rem;
    }
}