.comments-wrapper {
    max-width: 800px;
    margin: 2rem auto;
    font-family: 'Poppins', sans-serif;
    color: #ddd;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment-card {
    display: flex;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 1rem;
    gap: 1rem;
    box-shadow: 0 3px 15px rgba(255, 0, 100, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.comment-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,0,100,0.2);
}

.comment-avatar img {
    border-radius: 50%;
    width: 64px;
    height: 64px;
    object-fit: cover;
    border: 2px solid #ff2a6d;
}

.comment-body { flex: 1; }

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-author { font-weight: bold; color: #ff4d6d; }
.comment-date { font-size: 0.85rem; color: #aaa; }
.comment-text { line-height: 1.5; }

.comment-form-wrapper { margin-top: 2rem; }

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(255,0,100,0.1);
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 12px;
    border: none;
    background: #222;
    color: #fff;
    font-size: 1rem;
    box-sizing: border-box;
}

.comment-form textarea { resize: vertical; min-height: 120px; }
.comment-form-cookies-consent { font-size: 0.85rem; color: #aaa; }

.btn-submit {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(90deg, #ff4d6d, #ff2a6d);
    border: none;
    border-radius: 999px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    align-self: flex-start;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,0,100,0.3);
}

.load-more-wrapper { text-align: center; margin-top: 1rem; }
