/* Minified comments.css */
.comments-container {
    position: relative
}

.comment-card {
    transition: transform .3s ease, box-shadow .3s ease
}

.comment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px
}

.avatar-circle-sm {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px
}

.comment-actions .btn {
    border-radius: 20px;
    padding: .375rem .75rem;
    font-size: .875rem;
    transition: all .3s ease
}

.comment-actions .btn:hover {
    transform: translateY(-1px)
}

.like-btn {
    transition: all .3s ease
}

.like-btn:active {
    transform: scale(0.95)
}

.like-btn .fa-heart {
    transition: all .3s ease
}

.like-btn.btn-danger .fa-heart {
    color: #fff;
    animation: heartBeat .6s ease
}

@keyframes heartBeat {
    0% {
        transform: scale(1)
    }

    14% {
        transform: scale(1.3)
    }

    28% {
        transform: scale(1)
    }

    42% {
        transform: scale(1.3)
    }

    70% {
        transform: scale(1)
    }
}

.heart-beat {
    animation: heartBeat .6s ease
}

.reply-form {
    animation: slideDown .3s ease
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.reply-item {
    transition: all .3s ease
}

.reply-item:hover {
    background-color: #f8f9fa !important;
    transform: translateX(5px)
}

.empty-comments {
    padding: 3rem 0
}

.form-floating>.form-control {
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all .3s ease
}

.form-floating>.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 .2rem rgba(102, 126, 234, 0.25)
}

.comment-form-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px
}

.comment-form-card .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff
}

.comment-form-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6)
}

.comment-form-card .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #667eea;
    color: #fff;
    box-shadow: 0 0 0 .2rem rgba(102, 126, 234, 0.25)
}

.comment-form-card .form-floating label {
    color: rgba(255, 255, 255, 0.8)
}

.comment-form-card .form-floating>.form-control:focus~label,
.comment-form-card .form-floating>.form-control:not(:placeholder-shown)~label {
    color: #667eea
}

.comment-form-card .btn-light {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    transition: all .3s ease
}

.comment-form-card .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4)
}

.comment-content {
    line-height: 1.6
}

.replies-header {
    padding-bottom: .5rem
}

.replies-header .btn {
    border-radius: 20px;
    transition: all .3s ease;
    font-size: .875rem
}

.replies-header .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3)
}

.replies-container {
    animation: slideDown .3s ease
}

@media (max-width:768px) {
    .comment-actions {
        margin-top: 1rem
    }

    .comment-actions .btn-group {
        width: 100%
    }

    .comment-actions .btn {
        flex: 1
    }
}