@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'NotoNoto Sans JP', sans-serif;
    background-color: #242020;
    color: #ffffff;
}

header {
    background-color: #242020;
    padding: 20px 40px;
    border-bottom: 1px solid #57D9EA;
}

header h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2em;
    font-weight: 400;
    letter-spacing: 2px;
}

main {
    padding: 40px;
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
}

.profile-header h2 {
    font-size: 3.5em;
    font-family: 'Inter', sans-serif;
    color: #4dd4d4;
    margin-bottom: 10px;
    font-weight: normal;
}

.name-japanese {
    font-size: 1.2em;
    margin-bottom: 40px;
    letter-spacing: 1px;
    font-weight: 600;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.text-section {
    color: #ffffff;
}

.text-section h3 {
    font-size: 1.8em;
    color: #57D9EA;
    margin-bottom: 20px;
}

.intro p {
    line-height: 1.8;
    font-size: 1em;
}

.hobbies {
    margin-top: 40px;
}

.hobbies ul {
    list-style: none;
    padding-left: 0;
}

.hobbies ul li {
    padding: 8px 0;
    font-size: 1em;
}

.hobbies ul li::before {
    content: "• ";
    color: #ffffff;
    font-weight: bold;
    margin-right: 5px;
}

@media (min-width: 1000px) {
    .content-wrapper {
        display: flex;
        gap: 60px;
        align-items: flex-start;
    }
    
    .image-section {
        flex: 0 0 400px;
    }
    
    .text-section {
        flex: 1;
    }
}

@media (min-width: 600px) and (max-width: 999px) {
    .content-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    .image-section {
        margin-bottom: 40px;
    }
    
    .image-section img {
        max-width: 500px;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 599px) {
    header {
        padding: 15px 20px;
    }
    
    header h1 {
        font-size: 1.5em;
    }
    
    main {
        padding: 20px;
    }
    
    .profile-header h2 {
        font-size: 2em;
    }
    
    .name-japanese {
        font-size: 0.9em;
    }
    
    .content-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    .image-section {
        margin-bottom: 30px;
    }
    
    .image-section img {
        width: 260px;
        margin: 0 auto;
        display: block;
    }
    
    .text-section h3 {
        font-size: 1.5em;
    }
    
    .intro p,
    .hobbies ul li {
        font-size: 0.95em;
    }
}