.anipochi-comment-list {
    max-width: 700px;
    /*margin: 3rem auto 0;*/
}

.comment-title {
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #00eaff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.4);
    text-align: center;
}

.comment-card {
    display: flex;
    background: #1f2a38;
    border: 1px solid #444;
    border-radius: 18px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, background 0.3s ease;
}
.comment-card:hover {
    transform: translateY(-3px);
}

.comment-user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.0rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: white;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0,198,255,0.5);
}

.comment-body {
    flex-grow: 1;
}

.comment-header {
    justify-content: space-between;
    align-items: center;
    gap: 0.25rem;
}

.user-name-badge {
    font-weight: bold;
    background: rgba(0, 198, 255, 0.2);
    color: #00e5ff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.9rem;
}

.comment-time {
    font-size: 0.8rem;
    color: #aaa;
}

.comment-text {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 0.4rem;
    color: #f0f0f0;
}

.comment-box-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.comment-form {
    width: 100%;
    max-width: 720px;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.6), rgba(15, 15, 40, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 150, 255, 0.1);
    backdrop-filter: blur(12px);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-header {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #00c6ff;
}

.textarea-area {
    position: relative;
}

.styled-textarea {
    width: 100%;
    min-height: 120px;
    padding: 1rem;
    border: 1px solid #00c6ff33;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    resize: vertical;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.styled-textarea:focus {
    outline: none;
    border: 1px solid #00c6ff;
    box-shadow: 0 0 10px #00c6ff55;
}

.form-footer {
    display: flex;
    justify-content: flex-end;
}

.submit-button {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 999px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px #00c6ff;
}

/* モバイル対応 */
@media (max-width: 576px) {
    .comment-form {
        padding: 1rem;
    }

    .styled-textarea {
        min-height: 100px;
        font-size: 0.95rem;
    }

    .submit-button {
        padding: 0.5rem 1.2rem;
        font-size: 0.95rem;
    }
}