        /* Tron-form styles */
        
        .tron-form {
            background-color: var(--background-color);
            padding: 2rem;
            border-radius: 1rem;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: -4px -4px 6px rgba(255, 255, 255, 0.5), 4px 4px 6px var(--shadow-color);
        }
        
        .tron-form__title {
            margin-bottom: 1rem;
            text-align: center;
            font-size: 2rem;
        }
        
        .tron-form__label {
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .tron-form__input,
        .tron-form__textarea,
        .tron-form__select {
            display: block;
            width: 100%;
            padding: 0.5rem;
            font-size: 1rem;
            border: none;
            background-color: var(--background-color);
            box-shadow: inset -2px -2px 4px rgba(255, 255, 255, 0.5), inset 2px 2px 4px var(--shadow-color);
            margin-bottom: 1rem;
        }
        
        .tron-form__input:focus,
        .tron-form__textarea:focus,
        .tron-form__select:focus {
            outline: 2px solid var(--secondary-color);
            box-shadow: inset -2px -2px 4px rgba(255, 255, 255, 0.8), inset 2px 2px 4px var(--shadow-color);
        }
        
        .tron-form__textarea {
            resize: none;
            height: 150px;
        }
        
        .tron-form__image-upload-area {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100px;
            border: 2px dashed var(--secondary-color);
            cursor: pointer;
            margin-bottom: 1rem;
            box-shadow: -2px -2px 4px rgba(255, 255, 255, 0.5), 2px 2px 4px var(--shadow-color);
        }
        
        .tron-form__image-upload-area:hover {
            box-shadow: -2px -2px 4px rgba(255, 255, 255, 0.8), 2px 2px 4px var(--shadow-color);
        }
        
        .tron-form__thumbnails {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }
        
        .tron-form__submit-btn {
            display: block;
            width: 100%;
            padding: 0.75rem;
            font-size: 1rem;
            text-align: center;
            color: #fff;
            background-color: var(--secondary-color);
            border: none;
            border-radius: 0.25rem;
            cursor: pointer;
            box-shadow: -2px -2px 4px rgba(255, 255, 255, 0.5), 2px 2px 4px var(--shadow-color);
        }
        
        .tron-form__submit-btn:hover,
        .tron-form__submit-btn:focus {
            box-shadow: -2px -2px 4px rgba(255, 255, 255, 0.8), 2px 2px 4px var(--shadow-color);
        }
        /* Tron-form styles continued */
        
        .tron-form__image-input:focus+.tron-form__image-upload-area {
            outline: 2px solid var(--secondary-color);
        }
        
        .tron-form__image-upload-area span {
            text-align: center;
            font-size: 1rem;
        }
        
        .tron-form__thumbnails img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            margin-right: 1rem;
            margin-bottom: 1rem;
            border-radius: 0.25rem;
            box-shadow: -2px -2px 4px rgba(255, 255, 255, 0.5), 2px 2px 4px var(--shadow-color);
        }
        /* My Page styles */
        
        .my-page {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .profile-header__image {
            width: 100%;
            height: 30vh;
            object-fit: cover;
        }
        
        .profile-info {
            padding: 1.5rem;
            margin: 0 0 2rem 0;
            border-radius: 0.5rem;
            background-color: var(--background-color);
            box-shadow: -2px -2px 4px rgba(255, 255, 255, 0.5), 2px 2px 4px var(--shadow-color);
            text-align: center;
        }
        
        .profile-info__avatar {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid var(--background-color);
            box-shadow: -2px -2px 4px rgba(255, 255, 255, 0.5), 2px 2px 4px var(--shadow-color);
            margin-bottom: 1rem;
        }
        
        .profile-info__display-name {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 0.25rem;
        }
        
        .profile-info__username {
            font-size: 1rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        .profile-info__bio {
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        
        .profile-info__registered-date,
        .profile-info__website-url,
        .profile-info__location {
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }
        
        .profile-info__edit-btn {
            background-color: var(--primary-color);
            color: var(--text-color-light);
            border: none;
            border-radius: 0.25rem;
            padding: 0.5rem 1rem;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s;
            text-decoration: none;
        }
        
        .profile-info__edit-btn:hover {
            background-color: var(--primary-color-dark);
            color: var(--primary-color);
        }
        
        .profile-info {
            position: relative;
            padding: 2rem;
            background-color: var(--background-color);
            border-radius: 1rem;
            box-shadow: var(--box-shadow);
            overflow: hidden;
            /* 追加 */
        }
        
        .profile-info__header-image-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            /* ヘッダー画像の高さを指定 */
            overflow: hidden;
            z-index: 0;
        }
        
        .profile-info__header-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .profile-info__avatar-wrapper {
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 150px;
            height: 150px;
            margin-top: 100px;
            /* ヘッダー画像の半分の高さでオフセットする */
            margin-bottom: 1rem;
            margin-left: auto;
            margin-right: auto;
            border-radius: 50%;
        }
        
        .profile-info__avatar {
            width: 80%;
            height: 80%;
            object-fit: cover;
            border-radius: 50%;
        }
        /*かぼコイン*/
        
        .kabo-coin-view {
            width: 160px;
            padding: 10px 12px;
            border-radius: 12px;
            box-shadow: var(--box-shadow);
            position: absolute;
            right: 0;
            top: 0;
        }
        
        .kabo-coin-view__header {
            font-size: .85em;
        }
        
        .kabo-coin-view__body {
            text-align: right;
        }
        
        .kabo-coin-view__body--amount {
            font-weight: bold;
        }
        /* */
        
        .greeting-box {}
        
        .greeting-box__display_name {
            font-weight: bold;
        }
        /*dashboard*/
        
        .dashboard {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        
        .dashboard__header {
            height: 100px;
        }

        
/* Statistics */

.statistics {
    padding: 60px 0;
}

.statistics__container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.statistics__box {
    width: calc(33.3333% - 30px);
    background-color: var(--background-color);
    border-radius: 10px;
    overflow: hidden;
    /* Add the following lines for Neumorphism effect */
    box-shadow: -4px -4px 6px rgba(255, 255, 255, 0.5), 4px 4px 6px var(--shadow-color);
    transition: box-shadow 0.3s ease;
}

.statistics__box-link {
    display: block;
    text-align: center;
    padding: 30px;
    text-decoration: none;
}

.statistics__box-caption {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0 0 10px;
}

.statistics__box-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 0;
}

.statistics__box--action:hover.statistics__box,
.statistics__box--action:focus.statistics__box {
    box-shadow: inset -4px -4px 6px rgba(255, 255, 255, 0.5), inset 4px 4px 6px var(--shadow-color);
}

.statistics__box-link:focus .statistics__box {
    outline: 2px solid var(--secondary-color);
}


/* Responsive */

@media (max-width: 767px) {
    .statistics__container {
        flex-direction: column;
    }
    .statistics__box {
        width: 100%;
        margin-bottom: 30px;
    }
    .statistics__box:last-child {
        margin-bottom: 0;
    }
}

