.comment-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}
.profile-section {
    margin-top: -80px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.profile-section .profile-card {
	background:#fff;
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.profile-section .profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}
.profile-section .profile-name {
    font-size: 1.3rem;
    font-weight: bold;
    padding-bottom:15px;
}
.profile-section .profile-name span{
	font-size: 0.9rem;
	font-weight: normal;
}
.profile-section .profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.profile-section .tag {
    background-color: #E0F2F1;
    color: #00796B;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.profile-section .tagorange {
    background-color: #FFF3E0;
    color: #E65100;
}
.profile-section .tagtitle {
    background-color: #fff; color: #00796B;
}

.profile-section .addtext {
    border-top: 1px dashed #ddd; padding-top: 15px;
}

.voice .highlight-box {
    background-color: #FFF8E1;
    border-radius: 10px;
    padding: 20px 15px;
    margin: 30px 0;
    text-align: center;
    position: relative;
}
.voice .highlight-box::before {
    content: "“";
    font-size: 3rem;
    color: var(--accent-color);
    position: absolute;
    top: -15px;
    left: 10px;
    opacity: 0.3;
}
.voice .highlight-text {
    font-size: 1.05rem;
    font-weight: bold;
    line-height: 1.5;
}

.message-section-enhanced {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    padding: 40px 0; 
    border-radius: 20px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.message-comment-container {
    position: relative;
    z-index: 1;
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transform: none; 
}

.tape-top {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background-color: rgba(255, 255, 255, 0.7);
    border-left: 1px dashed rgba(0,0,0,0.1);
    border-right: 1px dashed rgba(0,0,0,0.1);
    z-index: 2;
}

.message-header {
    text-align: center;
    margin-bottom: 25px;
}

.message-target {
    display: inline-block;
    background-color: #FF8F00;
    color: #fff;
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 15px;
    margin-bottom: 8px;
    font-weight: bold;
}

.message-heading-hand {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.20rem;
    line-height: 1.4;
}

.message-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.message-content {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.05rem;
    line-height: 1.9;
    text-align: left;
}

.message-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    flex-shrink: 0;
    order: -1; 
}

.strong-hand {
    background: linear-gradient(transparent 65%, #fff176 65%);
    font-weight: bold;
    color: #222;
}


@media (min-width: 768px) {
    .profile-section {
        margin-top: -120px;
    }
    
    .profile-section .profile-card { padding: 40px; flex-direction: column; } 
    .profile-section .tag { font-size: 0.85rem; padding: 6px 12px; }
    .message-section-enhanced { padding: 30px 20px; }
    .message-comment-container {
        padding: 50px;
        transform: rotate(-0deg);
        /*max-width: 800px;*/
    }
    .message-body {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }
    .message-content { font-size: 1.1rem; order: 0; }
    .message-photo { 
        width: 140px; height: 140px; 
        order: 1;
        margin-top: 10px;
    }
    .message-heading-hand { font-size: 1.8rem; }
    
}