/* Comments Section Styles */
.comments-section {
    margin-top: 30px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #333;
}

.comments-section h4 {
    color: #6FC9CD;
    margin-bottom: 20px;
    font-size: 18px;
    border-bottom: 2px solid #6FC9CD;
    padding-bottom: 10px;
}

.comment-form {
    margin-bottom: 30px;
}

.comment-form textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 6px;
    background: #2a2a2a;
    color: #fff;
    font-size: 14px;
    resize: vertical;
    margin-bottom: 10px;
}

.comment-form textarea:focus {
    outline: none;
    border-color: #6FC9CD;
    box-shadow: 0 0 5px rgba(111, 201, 205, 0.3);
}

.comment-form button {
    background: #6FC9CD;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.comment-form button:hover {
    background: #5bb5b9;
}

.comment-form button:disabled {
    background: #555;
    cursor: not-allowed;
}

.comments-list {
    margin-top: 20px;
}

.comment-item {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    position: relative;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #6FC9CD;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    font-size: 12px;
}

.comment-user-info {
    display: flex;
    flex-direction: column;
}

.comment-username {
    color: #6FC9CD;
    font-weight: bold;
    font-size: 14px;
}

.comment-time {
    color: #888;
    font-size: 12px;
}

.comment-actions {
    display: flex;
    gap: 10px;
}

.comment-action-btn {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 3px;
    transition: all 0.3s;
}

.comment-action-btn:hover {
    background: #444;
    color: #fff;
}

.comment-content {
    color: #fff;
    line-height: 1.5;
    margin-bottom: 10px;
    word-wrap: break-word;
}

.comment-replies {
    margin-left: 20px;
    margin-top: 10px;
    border-left: 2px solid #444;
    padding-left: 15px;
}

.reply-item {
    background: #222;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 8px;
}

.reply-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.reply-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reply-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #6FC9CD;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    font-size: 10px;
}

.reply-username {
    color: #6FC9CD;
    font-weight: bold;
    font-size: 12px;
}

.reply-time {
    color: #888;
    font-size: 11px;
}

.reply-content {
    color: #ccc;
    font-size: 13px;
    line-height: 1.4;
}

.reply-form {
    margin-top: 10px;
    display: none;
}

.reply-form.active {
    display: block;
}

.reply-form textarea {
    width: 100%;
    min-height: 60px;
    padding: 8px;
    border: 1px solid #444;
    border-radius: 4px;
    background: #2a2a2a;
    color: #fff;
    font-size: 13px;
    resize: vertical;
    margin-bottom: 8px;
}

.reply-form textarea:focus {
    outline: none;
    border-color: #6FC9CD;
}

.reply-form button {
    background: #6FC9CD;
    color: #000;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
}

.reply-form button:hover {
    background: #5bb5b9;
}

.login-required {
    text-align: center;
    padding: 20px;
    color: #888;
}

.login-required a {
    color: #6FC9CD;
    text-decoration: none;
}

.login-required a:hover {
    text-decoration: underline;
}

.comment-loading {
    text-align: center;
    color: #888;
    padding: 20px;
}

.comment-error {
    color: #ff6b6b;
    text-align: center;
    padding: 10px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 4px;
    margin: 10px 0;
}

/* Load More Comments Button */
.load-more-comments-btn {
    background: linear-gradient(90deg, #6FC9CD 0%, #00e0ff 100%);
    color: #18191a;
    border: none;
    border-radius: 24px;
    padding: 10px 32px;
    font-size: 1.08em;
    font-weight: 600;
    margin: 12px auto 0 auto;
    box-shadow: 0 2px 12px #00e0ff22;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    outline: none;
    display: inline-block;
    letter-spacing: 0.5px;
}
.load-more-comments-btn:hover, .load-more-comments-btn:focus {
    background: linear-gradient(90deg, #5bb5b9 0%, #00bcd4 100%);
    color: #fff;
    box-shadow: 0 4px 16px #00e0ff44;
}
.load-more-comments-btn:active {
    background: #5bb5b9;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .comments-section {
        padding: 15px;
        margin-top: 20px;
    }
    
    .comment-item {
        padding: 12px;
    }
    
    .comment-replies {
        margin-left: 10px;
        padding-left: 10px;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .comment-actions {
        align-self: flex-end;
    }
} 