@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Pretendard-Regular', sans-serif;
}

body {
    margin: 0;
    background-color: #151515;
    color: white;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

section .highlight {
    position: absolute;
    left: 5vh;
    width: fit-content;
    font-size: 10rem;
    background: linear-gradient(to right, #CFEBF3, #62D4F4);
    color: transparent;
    -webkit-background-clip: text;
}

section .tt {
    position: absolute;
    left: 5vh;
    font-size: 7rem;
    text-align: left;
}

section .small-logo {
    position: absolute;
    top: 5.5vh;
    left: 5.6vh;
    font-size: 4rem;
    color: white;
    font-weight: bold;
}


.more {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

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

.more .icon img {
    width: 20px;
    height: auto;
}

.pill-container {
    width: fit-content;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-left: auto;
    margin-right: 5vh;
}

.pill-group {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.pill {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 2rem;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.star-icon {
    width: 2rem;
    height: 2rem;
    background-color: #FFD700;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.label {
    color: #ffffff;
    opacity: 0.7;
    font-size: 20px;
    margin-right: 8px;
}

/* 프로필 섹션 */
.profile-container {
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-image {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background-color: white;
    overflow: hidden;
}

.profile-image img {
    width: 10rem;
    height: 10rem;
    object-fit: cover;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.profile-name {
    font-size: 5.5rem;
    font-weight: bold;
}

.profile-date {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.profile-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-icon {
    width: 1rem;
    height: 1rem;
    background-color: #FFD700;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.social-icon img {
    width: 75px;
    height: 75px;
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, -10px);
    }
}

@media (max-width: 1024px) {
    h1 {
        font-size: 5rem !important;
    }

    .tt {
        font-size: 4rem !important;
        text-align: center;
    }

    .small-logo {
        font-size: 3rem;
    }

    .pill-container {
        margin-right: 3vh;
    }

    .pill {
        font-size: 1rem !important;
        padding: 10px 18px;
    }

    .label {
        font-size: 0.5rem !important;
    }

    .profile-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-left {
        flex-direction: column;
        align-items: center;
    }

    .profile-image {
        width: 8rem;
        height: 8rem;
    }

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

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

    .social-icon img {
        width: 35px;
        height: 35px;
    }

    .profile-image img {
        width: 8rem;
        height: 8rem;
        object-fit: cover;
    }
}

@media (max-width: 853px) {
    .highlight {
        font-size: 4.5rem;
    }

    .tt {
        font-size: 3.8rem;
    }

}

@media (max-width: 768px) {
    .highlight {
        font-size: 3.5rem !important;
        word-break: keep-all;
    }

    .tt {
        font-size: 3rem !important;
        word-break: keep-all;
        text-align: left;
        left: 50%;
        top: 20%;
    }

    .small-logo {
        font-size: 2rem;
    }

    .pill-container {
        align-items: center;
        margin: 0 auto;
        max-width: 90%;
    }

    .pill-group {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .pill {
        font-size: 1.2rem;
        padding: 8px 16px;
    }

    .profile-image {
        width: 6rem;
        height: 6rem;
    }

    .profile-image img {
        width: 6rem;
        height: 6rem;
        object-fit: cover;
    }

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

    .profile-date {
        font-size: 1.3rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 540px) {
    .highlight {
        font-size: 3rem !important;
    }

    .tt {
        font-size: 2.5rem !important;
    }
    
    .small-logo {
        font-size: 2.5rem !important;
    }
}


@media (max-width: 480px) {
    .highlight {
        font-size: 2.5rem !important;
    }

    .tt {
        font-size: 2rem !important;
    }

    .small-logo {
        font-size: 1.5rem;
    }

    .pill {
        font-size: 1rem;
        padding: 6px 12px;
    }

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

    .profile-date {
        font-size: 1.1rem;
    }
}

@media (max-width: 320px) {
    .highlight {
        font-size: 4rem !important;
    }

    .tt {
        font-size: 1.8rem !important;
    }
}