
.profile-section {
    height: auto;
    display: none;
    background-color: #000000;
}

.profile-section .profile-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 50px 0 0 0;
    background-color: #000000;
}

.profile-section .profile-layer {
    width: calc(100% - 200px);
    margin-top: 200px;
}

.profile-section .profile-upper {
    display: flex;
    justify-content: space-between;
}

.profile-section .profile-main {
    display: flex;
    flex-direction: column;
    align-items: center;
   
}

.profile-section .profile-main h1 {
    font-weight: 700;
    font-size: 128px;
    letter-spacing: 0px;
}

.profile-section .profile-upper > p:first-child {
    color: #FFFFFF;
    background-color: #007ACC;      /* Visual Studio blue */
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.profile-section .profile-upper > p:last-child {
    color: #999999;
}

.profile-section .profile-main h1 > span:first-child {
    color: #FFFFFF;
}

.profile-section .profile-main h1 > span:last-child {
    color: #C7C7CC;
}

.profile-section .profile-image-main {
    width: 100%;
    max-width: 900px;
    
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    margin-top: -100px;
}

.profile-section .profile-image-main img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.profile-section .profile-btn {
    all: unset;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    padding: 4px 15px;
    background-color: #0088FF;
    border-radius: 100px;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.23px;
    color: #FFFFFF;
    margin: 20px 0;
}

.profile-section .profile-main p {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
}

/* Highlight Section */
.profile-section .profile-highlight h1 {
    font-weight: 600;
    font-size: 40px;
    line-height: 47px;
    color: #CCCCCC;
    width: 80%;
    text-align: center;
}

.profile-section .profile-highlight h1 span {
    color: #FFFFFF;
}

.profile-section .profile-highlight-images {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 24px;
    padding: 20px 0;
    scrollbar-width: none;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    overflow-y: hidden;
}

.profile-section .profile-image-box {
    flex: 0 0 auto;
    width: 895px;
    aspect-ratio: 895 / 519;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 35px;
    overflow: hidden;
    padding: 10px;
    box-sizing: border-box;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 0.5px solid rgba(255,255,255,0.3);
    scroll-snap-align: center;
}

.profile-section .profile-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.profile-section .profile-highlight-images::-webkit-scrollbar {
    display: none;
}

.profile-section .profile-carousel {
    display: flex;
    gap: 50px;
}

.profile-section .profile-icon {
    color: #000000;
    background: #6C6C71;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border: unset;
    font-size: 28px;
    cursor: pointer;
}

/* Look + Strength + Sound Sections */
.profile-section .profile-look,
.profile-section .profile-strength,
.profile-section .profile-sound {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 150px 0 0 0;
    gap: 20px;
}

.profile-section .profile-look h1,
.profile-section .profile-strength h1,
.profile-section .profile-sound h1 {
    font-weight: 600;
    font-size: 40px;
    line-height: 47px;
    color: #CCCCCC;
    text-align: center;
}

.profile-section .profile-look h1 span,
.profile-section .profile-strength h1 span,
.profile-section .profile-sound h1 span {
    color: #FFFFFF;
}

.profile-section .profile-look p,
.profile-section .profile-strength p {
    font-weight: 400;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 47px;
    width: 60%;
    text-align: center;
}

/* Full Image Container */
.profile-section .profile-sound-image {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 20px solid #444;
    border-radius: 35px;
    box-sizing: border-box;
}

.profile-section .profile-sound-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Perception Section */
.profile-section .profile-perception {
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-section .profile-perception-bg {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.profile-section .profile-perception-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-section .profile-perception-bg h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 40px;
    line-height: 47px;
    color: #CCCCCC;
    text-align: center;
}

.profile-section .profile-perception-bg h1 span {
    color: #FFFFFF;
}

.profile-section .profile-discover-btn {
    all: unset;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    padding: 14px 20px;
    background-color: #0088FF;
    border-radius: 100px;
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
    color: #FFFFFF;
    margin: 20px 0;
}

.profile-section .profile-discover-btn a {
    text-decoration: none;
    color: #FFFFFF;
}

