        /* カードの全体的なスタイル */
        
        .profile-card {
            background-color: var(--main-bg);
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            width: 100%;
        }
        /* ヘッダー画像のスタイル */
        
        .profile-card__header {
            height: 150px;
            position: relative;
        }
        
        .profile-card__header-image {
            height: 100%;
            object-fit: cover;
            width: 100%;
        }
        /* プロフィール全体のデザイン */
        
        .profile-card__body {
            position: relative;
        }
        /* アバター画像のスタイル */
        
        .profile-card__avatar {
            border-radius: 50%;
            height: 100px;
            left: 20px;
            overflow: hidden;
            position: absolute;
            top: -90px;
            width: 100px;
        }
        
        .profile-card__avatar-image {
            height: 100%;
            object-fit: cover;
            width: 100%;
        }
        /* プロフィール情報のスタイル */
        
        .profile-card__info {
            margin-top: 30px;
            padding: 20px;
        }
        
        .profile-card__status {
            display: flex;
            -moz-box-direction: normal;
            -moz-box-orient: horizontal;
            flex-direction: row;
            align-items: center;
            gap: 5px;
        }
        
        .profile-card__display-name {
            font-size: 24px;
            font-weight: bold;
            margin: 0;
        }
        
        .profile-card__verified-badge {
            width: 24px;
        }
        
        .profile-card__username {
            color: #aaa;
            font-size: 14px;
            margin: 0;
        }
        
        .profile-card__follow-status {
            background: #aaa;
            font-size: 12px;
            margin: 0;
            color: #fff;
            border-radius: 4px;
            padding: 1px 8px;
        }
        
        .profile-card__bio {
            font-size: 14px;
            margin-bottom: 20px;
        }
        /* プロフィールボタンのスタイル */
        
        .profile-card__buttons {
            position: absolute;
            top: -20px;
            right: 12px;
            display: flex;
            flex-direction: row-reverse;
            gap: 10px;
        }
        
        .profile-card__button {
            padding: 8px 16px;
            border-radius: 24px;
            border: none;
            cursor: pointer;
            font-size: 14px;
            height: 38px;
        }
        /* プロフィール詳細のスタイル */
        
        .profile-card__details {
            margin-bottom: 20px;
            margin-top: 20px;
        }
        
        .profile-card__detail {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            width: calc(100% - 20px);
        }
        
        .profile-card__detail-label {
            color: #aaa;
            font-size: 14px;
        }
        /* 統計情報のスタイル */
        
        .profile-card__stats {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .profile-card__stat {
            flex: 1;
            text-align: center;
        }
        
        .profile-card__stat-label {
            color: #aaa;
            font-size: 14px;
        }
        
        .profile-card__stat-value {
            font-size: 18px;
            font-weight: bold;
        }
        
        .profile-card__stat-value a,
        .profile-card__detail-value a {
            color: #477995;
        }
        /* mini */
        
        .profile-card__avatar.profile-card__avatar--mini {
            width: 58px;
            height: 58px;
            top: -20px;
        }
        
        .profile-card__status.profile-card__status--mini {
            position: absolute;
            left: 90px;
        }
        
        .profile-card__display-name--mini {
            font-size: 20px;
        }
        
        .profile-card__status.profile-card__status--mini.profile-card__status--display-name {
            top: 0;
        }
        
        .profile-card__status.profile-card__status--mini.profile-card__status--user-name {
            top: -18px;
        }
        
        .profile-card__bio {
            font-size: 14px;
            margin-bottom: -10px;
            margin-top: 30px;
        }