* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Serif JP", "Helvetica Neue", "Sawarabi Mincho", "Noto Sans JP", Arial, Meiryo, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    min-height: 100vh;
    padding: 20px 0;
    position: relative;
    background-color: rgba(0, 0, 0, 0.6);
    background-blend-mode: darken;
}

body::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(/linkset/topkey08.jpg) center/cover no-repeat;
    filter: saturate(30%);
    z-index: -1;
}

hr, h2 {
        margin-bottom: 12px;
}

.container {
    margin: 0 auto;
    padding: 0 20px;
}

.profile-section {
    max-width: 480px;
    text-align: center;
    margin: 0 auto 30px;
}

.profile-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #927bd6, #514573);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.profile-name {
    margin-bottom: 8px;
}

.profile-name h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.profile-name h2 {
    font-size: 16px;
    color: #927bd6;
    font-weight: 300;
    letter-spacing: 1px;
}

.description-section {
    max-width:800px;
    padding: 0 20px;
    line-height: 1.75;
    margin: 20px auto 60px;
}

.description-section h2 {
    font-size: 18px;
    border-bottom:1px solid #fff;
    margin: 20px 0;
}

.description-section p {
    margin-bottom: 12px;
}

.description-section .img-box {
width: 100%;
height:200px;
overflow: hidden;
}

.description-section img {
    height:100%;
    object-fit: cover;
}

.profile-section a, .description-section a {
  color:#927bd6;
}

.profile-section a:hover, .description-section a:hover {
  border-bottom:1px solid #927bd6;
}

.links-section {
    max-width:480px;
    padding: 0 10px;
    margin: 20px auto 40px;
}

.link-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    text-decoration: none;
    color: #ffffff;
    display: block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.link-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.link-item:hover::before {
    left: 100%;
}

.link-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.link-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.link-icon img {
height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 10%;
}

.link-text {
    flex: 1;
}

.link-title {
    font-size: 16px;
    margin-bottom: 8px;
}

.link-description {
    font-size: 12px;
    color: #cccccc;
    line-height: 1.4;
}

.social-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.social-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.credit {
    text-align: center;
    color: #fff;
    font-size: 12px;
    margin-top: 30px;
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container>* {
    animation: fadeInUp 0.8s ease-out forwards;
}

.rg-badge-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rg-badge-wrap iframe {
  border: none;
}

.link-item:nth-child(1) {
    animation-delay: 0.1s;
}

.link-item:nth-child(2) {
    animation-delay: 0.2s;
}

.link-item:nth-child(3) {
    animation-delay: 0.3s;
}

.link-item:nth-child(4) {
    animation-delay: 0.4s;
}

.link-item:nth-child(5) {
    animation-delay: 0.5s;
}

@media (max-width: 768px) { 
    .container {
    margin: 0 auto;
    padding: 0 8px;
}
.description-section {
    padding: 0 5px;
}
.description-section .img-box {
    height:120px;
}
}