@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #191919;
    color: #D4D4D4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin-top: -80px;
}

.main-title {
    text-align: left;
    width: 70%;
    margin-bottom: 20px;
    font-size: 2.8em;
}

.content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 90px;
    width: 100%;
    max-width: 700px;
}

.profile-title,
.links-title {
    text-align: left;
    width: 100%;
}

.profile-logo {
    width: 260px;
    height: auto;
}

.quote {
    border-left: 4px solid #D4D4D4;
    padding-left: 10px;
    color: #D4D4D4;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.links a {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #191919;
    border: 1px solid #606060;
    padding: 12px;
    border-radius: 0px;
    text-decoration: underline;
    color: #c0c0c0;
    width: 240px;
    transition: background 0.2s, border-color 0.2s;
}

.links a:hover {
    background-color: #131313;
    border-color: #606060;
}

.icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 0px;
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .profile-section {
        order: 1;
    }

    .links-section {
        order: 2;
    }

    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 900px;
        margin-top: -100px;
    }
}